Make the count of bytes read from the file 64 bits.

We probably won't get files that big, but let's at least be prepared;
that squelches some compiler warnings.

Change-Id: Ia43ff78af7df63c7204c41d8331fea946de63116
Reviewed-on: https://code.wireshark.org/review/4015
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2014-09-06 11:51:59 -07:00
parent 8482173e5a
commit afb939b5f4
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ static gboolean at_eof;
static guint junk_chars;
static void finalize_frame(void);
static gchar* error_str;
static guint file_bytes_read;
static guint64 file_bytes_read;
static gboolean ok_frame;
static FILE_T yy_fh;