Make non-static a variable that doesn't need to be static.

svn path=/trunk/; revision=51001
This commit is contained in:
Guy Harris 2013-07-29 07:28:28 +00:00
parent 31731e9b91
commit 0c2c7eac71
1 changed files with 2 additions and 2 deletions

View File

@ -368,7 +368,7 @@ static gboolean _5views_dump(wtap_dumper *wdh,
const guint8 *pd, int *err)
{
_5views_dump_t *_5views = (_5views_dump_t *)wdh->priv;
static t_5VW_TimeStamped_Header HeaderFrame;
t_5VW_TimeStamped_Header HeaderFrame;
/* Frame Header */
/* constant fields */
@ -379,7 +379,7 @@ static gboolean _5views_dump(wtap_dumper *wdh,
HeaderFrame.RecSubType = htolel(CST_5VW_FRAME_RECORD);
HeaderFrame.RecNb = htolel(1);
/* record-dependant fields */
/* record-dependent fields */
HeaderFrame.Utc = htolel(phdr->ts.secs);
HeaderFrame.NanoSecondes = htolel(phdr->ts.nsecs);
HeaderFrame.RecSize = htolel(phdr->len);