summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2003-05-28 16:42:50 +0000
committermillert <millert@openbsd.org>2003-05-28 16:42:50 +0000
commitcfb0f08ced1695d11058fe78534619584ac70a54 (patch)
tree45aa673c9e5828e73f6d61e57abd855117ff700f
parento Deal with EDITOR not being a fully-qualified pathname (diff)
downloadwireguard-openbsd-cfb0f08ced1695d11058fe78534619584ac70a54.tar.xz
wireguard-openbsd-cfb0f08ced1695d11058fe78534619584ac70a54.zip
silence remaining gcc warning; now compiles -Wall clean
-rw-r--r--distrib/special/more/more.c6
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;