diff options
Diffstat (limited to 'src/usr.bin/what')
-rw-r--r-- | src/usr.bin/what/what.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/what/what.c b/src/usr.bin/what/what.c index d22d673..54917ff 100644 --- a/src/usr.bin/what/what.c +++ b/src/usr.bin/what/what.c @@ -1,4 +1,4 @@ -/* $OpenBSD: what.c,v 1.15 2015/10/09 01:37:09 deraadt Exp $ */ +/* $OpenBSD: what.c,v 1.16 2020/04/18 15:10:06 martijn Exp $ */ /* $NetBSD: what.c,v 1.4 1994/12/20 16:01:03 jtc Exp $ */ /* @@ -85,7 +85,7 @@ main(int argc, char *argv[]) perror(*argv); exit(matches ? 0 : 1); } - printf("%s\n", *argv); + printf("%s:\n", *argv); search(match); } while(*++argv); exit(matches ? 0 : 1); |