Don't declare the 'temp' timeval as static.

This commit is contained in:
jhb 2016-10-01 22:17:40 +00:00
parent f117eafcb4
commit 304f1e533c

View File

@ -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;