]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
fix typo in comment: s/nerrower/narrower/
authorJim Meyering <jim@meyering.net>
Tue, 20 Jun 2006 10:19:40 +0000 (10:19 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 20 Jun 2006 10:19:40 +0000 (10:19 +0000)
lib/openat.c

index eb0eddebb342ba4459919cfe41769576b169d281..6a1b42ea6285f916624c0e7cc7316b7b2a015ad6 100644 (file)
@@ -54,7 +54,7 @@ openat (int fd, char const *file, int flags, ...)
       va_start (arg, flags);
 
       /* If mode_t is narrower than int, use the promoted type (int),
-         not mode_t.  Use sizeof to guess whether mode_t is nerrower;
+         not mode_t.  Use sizeof to guess whether mode_t is narrower;
          we don't know of any practical counterexamples.  */
       if (sizeof (mode_t) < sizeof (int))
        mode = va_arg (arg, int);