aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2016-10-01 22:17:40 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2016-10-01 22:17:40 +0000
commitdda41f2078ad9bd5328a3057d131f310af1a9af0 (patch)
tree9d5f01eece5561c392b32288a8cedead833488cb /usr.bin
parent54b10c9e177560eae9e3372c701ab21a4f84ac56 (diff)
downloadsrc-dda41f2078ad9bd5328a3057d131f310af1a9af0.tar.gz
src-dda41f2078ad9bd5328a3057d131f310af1a9af0.zip
Don't declare the 'temp' timeval as static.
Notes
Notes: svn path=/head/; revision=306566
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/kdump/kdump.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/kdump/kdump.c b/usr.bin/kdump/kdump.c
index 519b0a09e235..35daf2804f61 100644
--- a/usr.bin/kdump/kdump.c
+++ b/usr.bin/kdump/kdump.c
@@ -562,7 +562,8 @@ void
dumpheader(struct ktr_header *kth)
{
static char unknown[64];
- static struct timeval prevtime, prevtime_e, temp;
+ static struct timeval prevtime, prevtime_e;
+ struct timeval temp;
const char *type;
const char *sign;