aboutsummaryrefslogtreecommitdiffstats
path: root/editcap.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-06-19 23:08:57 +0000
committerGuy Harris <guy@alum.mit.edu>2001-06-19 23:08:57 +0000
commit8c52d3db759853d3f9681fec3f0a9dfc2de74b20 (patch)
tree9e5ede6dc78c7696a5411ab8dd57a7afbd242481 /editcap.c
parent099903ee7b7a38fbf5ca5c8df39c0a2dbfdb5dca (diff)
downloadwireshark-8c52d3db759853d3f9681fec3f0a9dfc2de74b20.tar.gz
wireshark-8c52d3db759853d3f9681fec3f0a9dfc2de74b20.tar.bz2
wireshark-8c52d3db759853d3f9681fec3f0a9dfc2de74b20.zip
More signed vs. unsigned cleanups, and initialization cleanups, from
Joerg Mayer. svn path=/trunk/; revision=3578
Diffstat (limited to 'editcap.c')
-rw-r--r--editcap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/editcap.c b/editcap.c
index eada6e0745..0c26c46e27 100644
--- a/editcap.c
+++ b/editcap.c
@@ -1,7 +1,7 @@
/* Edit capture files. We can delete records, or simply convert from one
* format to another format.
*
- * $Id: editcap.c,v 1.14 2001/04/20 22:35:19 guy Exp $
+ * $Id: editcap.c,v 1.15 2001/06/19 23:08:55 guy Exp $
*
* Originally written by Richard Sharpe.
* Improved by Guy Harris.
@@ -53,7 +53,7 @@ static int keep_em = 0;
static int out_file_type = WTAP_FILE_PCAP; /* default to "libpcap" */
static int out_frame_type = -2; /* Leave frame type alone */
static int verbose = 0; /* Not so verbose */
-static int snaplen = 0; /* No limit */
+static unsigned int snaplen = 0; /* No limit */
/* Add a selection item, a simple parser for now */