From 9db39bb7bd8e901c54e472b49d1d2e85fb794cfd Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Wed, 28 Sep 2011 00:48:40 +0200 Subject: [PATCH] unix: don't use C99 comments in C89 source --- src/unix/freebsd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/freebsd.c b/src/unix/freebsd.c index 917866f3..2cfe0536 100644 --- a/src/unix/freebsd.c +++ b/src/unix/freebsd.c @@ -223,7 +223,7 @@ uv_err_t uv_cpu_info(uv_cpu_info_t** cpu_infos, int* count) { free(*cpu_infos); return uv__new_sys_error(errno); } - // kern.cp_times on FreeBSD i386 gives an array up to maxcpus instead of ncpu + /* kern.cp_times on FreeBSD i386 gives an array up to maxcpus instead of ncpu */ size = sizeof(maxcpus); if (sysctlbyname("kern.smp.maxcpus", &maxcpus, &size, NULL, 0) < 0) { free(*cpu_infos);