diff options
Diffstat (limited to 'coreutils/mknod.c')
-rw-r--r-- | coreutils/mknod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/mknod.c b/coreutils/mknod.c index 7cc478f17..8ca511cd5 100644 --- a/coreutils/mknod.c +++ b/coreutils/mknod.c | |||
@@ -32,7 +32,7 @@ int mknod_main(int argc, char **argv) | |||
32 | 32 | ||
33 | dev = 0; | 33 | dev = 0; |
34 | if ((*name != 'p') && ((argc -= 2) == 2)) { | 34 | if ((*name != 'p') && ((argc -= 2) == 2)) { |
35 | /* Autodetect what the system supports; thexe macros should | 35 | /* Autodetect what the system supports; these macros should |
36 | * optimize out to two constants. */ | 36 | * optimize out to two constants. */ |
37 | dev = makedev(xatoul_range(argv[2], 0, major(UINT_MAX)), | 37 | dev = makedev(xatoul_range(argv[2], 0, major(UINT_MAX)), |
38 | xatoul_range(argv[3], 0, minor(UINT_MAX))); | 38 | xatoul_range(argv[3], 0, minor(UINT_MAX))); |