diff options
Diffstat (limited to 'toys')
-rw-r--r-- | toys/posix/uname.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/toys/posix/uname.c b/toys/posix/uname.c index 3c774b3c..fcc92a08 100644 --- a/toys/posix/uname.c +++ b/toys/posix/uname.c @@ -56,8 +56,10 @@ void uname_main(void) // This problem originates in autoconf, so of course the solution // is horribly ugly. #ifdef GROSS - if (i==4 && !strcmp(c,"x86_64")) printf(GROSS); - else + if (i==4 && !strcmp(c,"x86_64")) { + printf(GROSS); + continue; + } #endif if (needspace++) { |