From 5f612e7749d9121433b9b7404c8e12c2fabd6699 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sun, 30 Nov 2008 20:42:16 -0600 Subject: Fix typo. --- toys/uname.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3