diff options
author | Denis Vlasenko | 2009-01-19 16:38:30 +0000 |
---|---|---|
committer | Denis Vlasenko | 2009-01-19 16:38:30 +0000 |
commit | 038eec7c8bc13abc61adf3c67a005812db20006b (patch) | |
tree | 2bacd34923dd30a16fdb74bf0b169a50521e4c71 | |
parent | 059138fd084fdb2d9aeb738167e50e0b7985fbf8 (diff) | |
download | busybox-038eec7c8bc13abc61adf3c67a005812db20006b.zip busybox-038eec7c8bc13abc61adf3c67a005812db20006b.tar.gz |
uname: use wider integer for option bits
-rw-r--r-- | coreutils/uname.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/uname.c b/coreutils/uname.c index 8e51aa8..cd0218a 100644 --- a/coreutils/uname.c +++ b/coreutils/uname.c @@ -80,7 +80,7 @@ int uname_main(int argc UNUSED_PARAM, char **argv) const char *unknown_str = "unknown"; const char *fmt; const unsigned short *delta; - char toprint; + unsigned toprint; toprint = getopt32(argv, options); |