From: Jim Meyering Date: Tue, 20 Jun 2006 10:19:40 +0000 (+0000) Subject: fix typo in comment: s/nerrower/narrower/ X-Git-Tag: v6.0~289 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8280381dd703340cc2ad32e9c66e9de33f86444d;p=thirdparty%2Fcoreutils.git fix typo in comment: s/nerrower/narrower/ --- diff --git a/lib/openat.c b/lib/openat.c index eb0eddebb3..6a1b42ea62 100644 --- a/lib/openat.c +++ b/lib/openat.c @@ -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);