From d1873b0128ea37c5dcf1cc42f05ba9083b07f944 Mon Sep 17 00:00:00 2001 From: murgatroid99 Date: Mon, 22 Jun 2015 14:12:58 -0700 Subject: [PATCH] Fixed incorrect comment format --- src/core/support/cpu_linux.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/support/cpu_linux.c b/src/core/support/cpu_linux.c index b59d013e92c..282d4daab1c 100644 --- a/src/core/support/cpu_linux.c +++ b/src/core/support/cpu_linux.c @@ -51,7 +51,8 @@ static int ncpus = 0; static void init_num_cpus() { - // This must be signed. sysconf returns -1 when the number can't be determined + /* This must be signed. sysconf returns -1 when the number cannot be + determined */ ncpus = (int)sysconf(_SC_NPROCESSORS_ONLN); if (ncpus < 1) { gpr_log(GPR_ERROR, "Cannot determine number of CPUs: assuming 1");