From: Roland McGrath Date: Thu, 19 Mar 2015 22:25:53 +0000 (-0700) Subject: (__get_nprocs_conf): Comment typo fix. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=04c647cf8a1274dfb9c8e9e80ec5f2e0b1189199;p=thirdparty%2Fglibc.git (__get_nprocs_conf): Comment typo fix. --- diff --git a/sysdeps/nacl/getsysstats.c b/sysdeps/nacl/getsysstats.c index c9c8a19e47e..97a2edb459d 100644 --- a/sysdeps/nacl/getsysstats.c +++ b/sysdeps/nacl/getsysstats.c @@ -29,7 +29,7 @@ __get_nprocs_conf (void) { int nprocs; if (__nacl_irt_basic.sysconf (NACL_ABI__SC_NPROCESSORS_ONLN, &nprocs) != 0) - /* On failure (which should be impossible). just report one processor. */ + /* On failure (which should be impossible), just report one processor. */ nprocs = 1; return nprocs; }