diff options
Diffstat (limited to 'which.c')
-rw-r--r-- | which.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 | } |