Fix misspelling.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 20 Jun 2006 19:19:25 +0000 (19:19 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 20 Jun 2006 19:19:25 +0000 (19:19 +0000)
lib/openat.c

index 572e6d5..92fa069 100644 (file)
@@ -52,7 +52,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.  */
       mode = (sizeof (mode_t) < sizeof (int)
              ? va_arg (arg, int)