]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(__get_nprocs_conf): Comment typo fix.
authorRoland McGrath <roland@hack.frob.com>
Thu, 19 Mar 2015 22:25:53 +0000 (15:25 -0700)
committerRoland McGrath <roland@hack.frob.com>
Thu, 19 Mar 2015 22:25:53 +0000 (15:25 -0700)
sysdeps/nacl/getsysstats.c

index c9c8a19e47e97fa53501c024763d0f9edc326dfc..97a2edb459dca03177e08f4ad050145e711f9edb 100644 (file)
@@ -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;
 }