diff options
-rw-r--r-- | sbin/savecore/savecore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/savecore/savecore.c b/sbin/savecore/savecore.c index 96cb2bb..8d1e95a 100644 --- a/sbin/savecore/savecore.c +++ b/sbin/savecore/savecore.c @@ -88,8 +88,8 @@ __FBSDID("$FreeBSD$"); /* The size of the buffer used for I/O. */ #define BUFFERSIZE (1024*1024) -int checkfor, compress, clear, force, keep, verbose; /* flags */ -int nfound, nsaved, nerr; /* statistics */ +static int checkfor, compress, clear, force, keep, verbose; /* flags */ +static int nfound, nsaved, nerr; /* statistics */ extern FILE *zopen(const char *, const char *); |