aboutsummaryrefslogtreecommitdiffstats
path: root/file.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 /file.c
parent099903ee7b7a38fbf5ca5c8df39c0a2dbfdb5dca (diff)
More signed vs. unsigned cleanups, and initialization cleanups, from
Joerg Mayer. svn path=/trunk/; revision=3578
Diffstat (limited to 'file.c')
-rw-r--r--file.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/file.c b/file.c
index e096b35d29..0bdaa4f8be 100644
--- a/file.c
+++ b/file.c
@@ -1,7 +1,7 @@
/* file.c
* File I/O routines
*
- * $Id: file.c,v 1.240 2001/06/08 08:50:49 guy Exp $
+ * $Id: file.c,v 1.241 2001/06/19 23:08:55 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -893,7 +893,7 @@ rescan_packets(capture_file *cf, const char *action, gboolean refilter,
gboolean stop_flag;
guint32 progbar_quantum;
guint32 progbar_nextstep;
- int count;
+ unsigned int count;
frame_data *selected_frame;
int selected_row;
int row;
@@ -1282,7 +1282,7 @@ change_time_formats(capture_file *cf)
gboolean stop_flag;
guint32 progbar_quantum;
guint32 progbar_nextstep;
- int count;
+ unsigned int count;
int row;
int i;
GtkStyle *pl_style;
@@ -1389,7 +1389,7 @@ find_packet(capture_file *cf, dfilter_t *sfcode)
gboolean stop_flag;
guint32 progbar_quantum;
guint32 progbar_nextstep;
- int count;
+ unsigned int count;
proto_tree *protocol_tree;
gboolean frame_matched;
int row;