diff options
author | Rob Landley <rob@landley.net> | 2008-11-30 20:42:16 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2008-11-30 20:42:16 -0600 |
commit | 5f612e7749d9121433b9b7404c8e12c2fabd6699 (patch) | |
tree | 2727c177126bbb329641ee484bc01f0542911041 /toys | |
parent | 8ee966f83218008f04d4c19d0ea7a5fbb039e045 (diff) | |
download | toybox-5f612e7749d9121433b9b7404c8e12c2fabd6699.tar.gz |
Fix typo.
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 |