mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-03 06:53:31 +08:00
fix typo in comment: s/nerrower/narrower/
This commit is contained in:
parent
c88873d3a4
commit
8280381dd7
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user