diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-06-26 07:08:37 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-06-26 07:08:37 +0000 |
commit | 6cca68901b49daa5f7766afdf48c6a8fff7f0d21 (patch) | |
tree | 550a6af9add7afbbab5d94851d54a4152ea6eabd /usr.bin/what/what.c | |
parent | d7d6f05a8b3e0de03ce06e397e3bd59451e705a3 (diff) |
put the tab in
Diffstat (limited to 'usr.bin/what/what.c')
-rw-r--r-- | usr.bin/what/what.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/what/what.c b/usr.bin/what/what.c index 03d47176078..41238ad5570 100644 --- a/usr.bin/what/what.c +++ b/usr.bin/what/what.c @@ -1,4 +1,4 @@ -/* $OpenBSD: what.c,v 1.3 1996/06/26 06:40:11 deraadt Exp $ */ +/* $OpenBSD: what.c,v 1.4 1996/06/26 07:08:36 deraadt Exp $ */ /* $NetBSD: what.c,v 1.4 1994/12/20 16:01:03 jtc Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)what.c 8.1 (Berkeley) 6/6/93"; #endif -static char rcsid[] = "$OpenBSD: what.c,v 1.3 1996/06/26 06:40:11 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: what.c,v 1.4 1996/06/26 07:08:36 deraadt Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -95,7 +95,7 @@ loop: if (c == '$') { for (i = 0; match[i]; i++) if ((c = getchar()) != match[i]) goto loop; - printf("$%s", match); + printf("\t$%s", match); while (isprint(c = getchar())) putchar(c); putchar('\n'); |