From: Paul Eggert Date: Tue, 20 Jun 2006 19:19:25 +0000 (+0000) Subject: Fix misspelling. X-Git-Tag: cvs-readonly~2340 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=c456044ef45138366ef533bd83a99ceb2c3434c4;p=gnulib.git Fix misspelling. --- diff --git a/lib/openat.c b/lib/openat.c index 572e6d553..92fa0694a 100644 --- a/lib/openat.c +++ b/lib/openat.c @@ -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)