diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-06-02 15:05:03 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-06-02 15:05:03 +0000 |
commit | be581e2170d9ae8e19488ad906aff1cee947edee (patch) | |
tree | b00aceaa3377039bd99b3b8a6156642d3632f7ca /usr.bin | |
parent | c9555a90f229c12a7c34675d9367143813cab0bf (diff) |
shut up -Wall
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/m4/main.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/m4/main.c b/usr.bin/m4/main.c index 9813ea484de..a8b83c3a663 100644 --- a/usr.bin/m4/main.c +++ b/usr.bin/m4/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.8 1998/04/25 18:47:20 millert Exp $ */ +/* $OpenBSD: main.c,v 1.9 1998/06/02 15:05:02 mickey Exp $ */ /* $NetBSD: main.c,v 1.12 1997/02/08 23:54:49 cgd Exp $ */ /*- @@ -47,7 +47,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: main.c,v 1.8 1998/04/25 18:47:20 millert Exp $"; +static char rcsid[] = "$OpenBSD: main.c,v 1.9 1998/06/02 15:05:02 mickey Exp $"; #endif #endif /* not lint */ @@ -288,9 +288,10 @@ macro() { cycle { t = gpbc(); + s = token; if (t == '_' || isalpha(t)) { putback(t); - if ((p = inspect(s = token)) == nil) { + if ((p = inspect(s)) == nil) { if (sp < 0) while (*s) putc(*s++, active); |