diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-01-19 16:38:30 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-01-19 16:38:30 +0000 |
commit | 038eec7c8bc13abc61adf3c67a005812db20006b (patch) | |
tree | 2bacd34923dd30a16fdb74bf0b169a50521e4c71 /coreutils/uname.c | |
parent | 059138fd084fdb2d9aeb738167e50e0b7985fbf8 (diff) |
uname: use wider integer for option bits
Diffstat (limited to 'coreutils/uname.c')
-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 8e51aa817..cd0218aaf 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); |