aboutsummaryrefslogtreecommitdiffstats
path: root/editcap.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2012-09-09 14:23:38 +0000
committerEvan Huus <eapache@gmail.com>2012-09-09 14:23:38 +0000
commit9c0dd8c7dc1363b0316429e54b33f9afdea9ec68 (patch)
treeb5fa86d0e65c70237f0d629b92fb24be001cce24 /editcap.c
parent2fc104ad340bd58f2914e2703b00dd172c3de8e5 (diff)
Make count variable in editcap unsigned, fixes more format string
mismatches. svn path=/trunk/; revision=44820
Diffstat (limited to 'editcap.c')
-rw-r--r--editcap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/editcap.c b/editcap.c
index bd1c759bc0..38c3d82fdb 100644
--- a/editcap.c
+++ b/editcap.c
@@ -823,7 +823,7 @@ main(int argc, char *argv[])
guint32 snaplen = 0; /* No limit */
int choplen = 0; /* No chop */
wtap_dumper *pdh = NULL;
- int count = 1;
+ unsigned int count = 1;
unsigned duplicate_count = 0;
gint64 data_offset;
struct wtap_pkthdr snap_phdr;