diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-30 19:23:46 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-30 19:23:46 +0000 |
commit | 30f64c3aa2696026f9c21e555c79f1dea7c55c76 (patch) | |
tree | 8140b13e9850f9253de3932266e34ddd6d04a0db /ls.c | |
parent | 85260673367011a08c262891bb40cb65418fa720 (diff) | |
download | busybox-w32-30f64c3aa2696026f9c21e555c79f1dea7c55c76.tar.gz busybox-w32-30f64c3aa2696026f9c21e555c79f1dea7c55c76.tar.bz2 busybox-w32-30f64c3aa2696026f9c21e555c79f1dea7c55c76.zip |
Fix a stupid typo -- bug found by Larry Doolittle.
Diffstat (limited to '')
-rw-r--r-- | ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -68,7 +68,7 @@ enum { | |||
68 | #include <signal.h> | 68 | #include <signal.h> |
69 | #include <sys/ioctl.h> | 69 | #include <sys/ioctl.h> |
70 | 70 | ||
71 | #ifndef NAJOR | 71 | #ifndef MAJOR |
72 | #define MAJOR(dev) (((dev)>>8)&0xff) | 72 | #define MAJOR(dev) (((dev)>>8)&0xff) |
73 | #define MINOR(dev) ((dev)&0xff) | 73 | #define MINOR(dev) ((dev)&0xff) |
74 | #endif | 74 | #endif |