aboutsummaryrefslogtreecommitdiff
path: root/coreutils/uname.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/uname.c')
-rw-r--r--coreutils/uname.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/coreutils/uname.c b/coreutils/uname.c
index 57039b1bf..765809658 100644
--- a/coreutils/uname.c
+++ b/coreutils/uname.c
@@ -127,11 +127,9 @@ int uname_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
127{ 127{
128 uname_info_t uname_info; 128 uname_info_t uname_info;
129 IF_UNAME(const char *unknown_str = "unknown";) 129 IF_UNAME(const char *unknown_str = "unknown";)
130 unsigned toprint;
131
132 toprint = (1 << 4); /* "arch" = "uname -m" */
133
134#if ENABLE_UNAME 130#if ENABLE_UNAME
131 unsigned toprint = (1 << 4); /* "arch" = "uname -m" */
132
135 if (!ENABLE_BB_ARCH || applet_name[0] == 'u') { 133 if (!ENABLE_BB_ARCH || applet_name[0] == 'u') {
136# if ENABLE_LONG_OPTS 134# if ENABLE_LONG_OPTS
137 static const char uname_longopts[] ALIGN1 = 135 static const char uname_longopts[] ALIGN1 =