diff options
Diffstat (limited to 'coreutils/uname.c')
-rw-r--r-- | coreutils/uname.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/uname.c b/coreutils/uname.c index 575fb525c..5a3eafe92 100644 --- a/coreutils/uname.c +++ b/coreutils/uname.c | |||
@@ -91,10 +91,10 @@ int uname_main(int argc, char **argv) | |||
91 | 91 | ||
92 | strcpy(uname_info.processor, "unknown"); | 92 | strcpy(uname_info.processor, "unknown"); |
93 | 93 | ||
94 | delta=utsname_offset; | 94 | delta = utsname_offset; |
95 | do { | 95 | do { |
96 | if (toprint & 1) { | 96 | if (toprint & 1) { |
97 | bb_printf(((char *)(&uname_info)) + *delta); | 97 | printf(((char *)(&uname_info)) + *delta); |
98 | if (toprint > 1) { | 98 | if (toprint > 1) { |
99 | putchar(' '); | 99 | putchar(' '); |
100 | } | 100 | } |
@@ -103,5 +103,5 @@ int uname_main(int argc, char **argv) | |||
103 | } while (toprint >>= 1); | 103 | } while (toprint >>= 1); |
104 | putchar('\n'); | 104 | putchar('\n'); |
105 | 105 | ||
106 | bb_fflush_stdout_and_exit(EXIT_SUCCESS); | 106 | fflush_stdout_and_exit(EXIT_SUCCESS); |
107 | } | 107 | } |