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

This commit is contained in:
John Baldwin 2016-10-01 22:17:40 +00:00
parent 54b10c9e17
commit dda41f2078
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=306566

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;