diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-05-28 16:42:51 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-05-28 16:42:51 +0000 |
commit | cf3f72cf08e67a52df4fa3f41daf5daab4b4adfc (patch) | |
tree | 43b1340934d81117bd6f2cac0e8ecfb906d78757 /distrib | |
parent | 06ad18dcfeb09d7f67095f54c101ee697e9b505d (diff) |
silence remaining gcc warning; now compiles -Wall clean
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/special/more/more.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/special/more/more.c b/distrib/special/more/more.c index 43cb3b9d2ef..5200b3788ed 100644 --- a/distrib/special/more/more.c +++ b/distrib/special/more/more.c @@ -1,4 +1,4 @@ -/* $OpenBSD: more.c,v 1.8 2003/05/28 16:41:24 millert Exp $ */ +/* $OpenBSD: more.c,v 1.9 2003/05/28 16:42:50 millert Exp $ */ /*- * Copyright (c) 1980 The Regents of the University of California. @@ -43,7 +43,7 @@ static const char copyright[] = #if 0 static const char sccsid[] = "@(#)more.c 5.28 (Berkeley) 3/1/93"; #else -static const char rcsid[] = "$OpenBSD: more.c,v 1.8 2003/05/28 16:41:24 millert Exp $"; +static const char rcsid[] = "$OpenBSD: more.c,v 1.9 2003/05/28 16:42:50 millert Exp $"; #endif #endif /* not lint */ @@ -191,7 +191,7 @@ __dead void usage(void); int main(int argc, char **argv) { - FILE *f; + FILE * volatile f; char *s; char *p; volatile int left; |