summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2006-06-20 10:19:40 +0000
committerJim Meyering <jim@meyering.net>2006-06-20 10:19:40 +0000
commit8280381dd703340cc2ad32e9c66e9de33f86444d (patch)
tree8288d7705134786c366639829b2261349199f9fa /lib
parentc88873d3a48127eb6252faf586a0026b091e3628 (diff)
downloadcoreutils-8280381dd703340cc2ad32e9c66e9de33f86444d.tar.xz
fix typo in comment: s/nerrower/narrower/
Diffstat (limited to 'lib')
-rw-r--r--lib/openat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/openat.c b/lib/openat.c
index eb0eddebb..6a1b42ea6 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);