aboutsummaryrefslogtreecommitdiff
path: root/which.c
diff options
context:
space:
mode:
authorkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-05-16 14:21:09 +0000
committerkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-05-16 14:21:09 +0000
commitbbb602f480533eb3bdc18187065b3b5616482f4a (patch)
treefab28cbdabe79bb98e1cdc99f1fa2b6da599f709 /which.c
parent716d34b7be144daf1fbafbe9044caa3c59649ea7 (diff)
downloadbusybox-w32-bbb602f480533eb3bdc18187065b3b5616482f4a.tar.gz
busybox-w32-bbb602f480533eb3bdc18187065b3b5616482f4a.tar.bz2
busybox-w32-bbb602f480533eb3bdc18187065b3b5616482f4a.zip
Change 'printf("%s\n", ...)' into 'puts(...)'. Noted and patched in hostname.c
by Larry Doolittle. git-svn-id: svn://busybox.net/trunk/busybox@2653 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r--which.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/which.c b/which.c
index b2acd78de..c460ffdd1 100644
--- a/which.c
+++ b/which.c
@@ -58,7 +58,7 @@ extern int which_main(int argc, char **argv)
58 if (stat (buf, &filestat) == 0 58 if (stat (buf, &filestat) == 0
59 && filestat.st_mode & S_IXUSR) 59 && filestat.st_mode & S_IXUSR)
60 { 60 {
61 printf ("%s\n", buf); 61 puts(buf);
62 found = 1; 62 found = 1;
63 break; 63 break;
64 } 64 }