aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/wtap-int.h
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2011-05-31 15:27:48 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2011-05-31 15:27:48 +0000
commit63b50fe2eea5e88c455869066626f350acfd9761 (patch)
tree7cbe8386e1ca786969d439f41b5c15686f1a2220 /wiretap/wtap-int.h
parent8f8f0e9ad6fdf0cf3ad12cb2cd1f032da517932c (diff)
Declare the snapshot_length as unsigned.
svn path=/trunk/; revision=37479
Diffstat (limited to 'wiretap/wtap-int.h')
-rw-r--r--wiretap/wtap-int.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/wiretap/wtap-int.h b/wiretap/wtap-int.h
index 96e3a68ba5..b4ed66a350 100644
--- a/wiretap/wtap-int.h
+++ b/wiretap/wtap-int.h
@@ -54,7 +54,7 @@ struct wtap {
FILE_T fh;
FILE_T random_fh; /* Secondary FILE_T for random access */
int file_type;
- int snapshot_length;
+ guint snapshot_length;
struct Buffer *frame_buffer;
struct wtap_pkthdr phdr;
union wtap_pseudo_header pseudo_header;