diff options
author | Denis Vlasenko | 2007-08-16 10:37:49 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-08-16 10:37:49 +0000 |
commit | a0319ba936236433e6b8c3a96e890c3531effbc9 (patch) | |
tree | 491305edf82994ef5a2f7ce915b91481bd63c6ef /coreutils | |
parent | 6a2f7f41cf7c544d6abce958f89c873b24f79b18 (diff) | |
download | busybox-a0319ba936236433e6b8c3a96e890c3531effbc9.zip busybox-a0319ba936236433e6b8c3a96e890c3531effbc9.tar.gz |
hdparm: shrink rodata by ~250 bytes
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/dos2unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/dos2unix.c b/coreutils/dos2unix.c index 00688aa..1bfdf0c 100644 --- a/coreutils/dos2unix.c +++ b/coreutils/dos2unix.c @@ -91,7 +91,7 @@ int dos2unix_main(int argc, char **argv) } /* -u convert to unix, -d convert to dos */ - opt_complementary = "u--d:d--u"; /* mutally exclusive */ + opt_complementary = "u--d:d--u"; /* mutually exclusive */ o = getopt32(argc, argv, "du"); /* Do the conversion requested by an argument else do the default |