aboutsummaryrefslogtreecommitdiff
path: root/coreutils/mknod.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-12-02 20:47:36 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-12-02 20:47:36 +0000
commit91d4a2dac3a239455abfd0037cd2d7650a9af616 (patch)
tree4e0605a6634964c45b8edc72551d004e06c475f6 /coreutils/mknod.c
parent1375bc7b678d143798823c719ebba55dce596585 (diff)
downloadbusybox-91d4a2dac3a239455abfd0037cd2d7650a9af616.tar.gz
- commentary typo
Diffstat (limited to 'coreutils/mknod.c')
-rw-r--r--coreutils/mknod.c2
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)
dev = 0;
if ((*name != 'p') && ((argc -= 2) == 2)) {
- /* Autodetect what the system supports; thexe macros should
+ /* Autodetect what the system supports; these macros should
* optimize out to two constants. */
dev = makedev(xatoul_range(argv[2], 0, major(UINT_MAX)),
xatoul_range(argv[3], 0, minor(UINT_MAX)));