diff options
Diffstat (limited to 'toys')
-rw-r--r-- | toys/uname.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/uname.c b/toys/uname.c index fe762389..dd29ec17 100644 --- a/toys/uname.c +++ b/toys/uname.c @@ -58,7 +58,7 @@ 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) + if (i==4 && !strcmp(c,"x86_64")) printf(GROSS); else #endif |