aboutsummaryrefslogtreecommitdiffstats
path: root/proto_hier_stats.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 /proto_hier_stats.c
parent099903ee7b7a38fbf5ca5c8df39c0a2dbfdb5dca (diff)
More signed vs. unsigned cleanups, and initialization cleanups, from
Joerg Mayer. svn path=/trunk/; revision=3578
Diffstat (limited to 'proto_hier_stats.c')
-rw-r--r--proto_hier_stats.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto_hier_stats.c b/proto_hier_stats.c
index bb28b7269e..dc09fab34a 100644
--- a/proto_hier_stats.c
+++ b/proto_hier_stats.c
@@ -1,7 +1,7 @@
/* proto_hier_stats.c
* Routines for calculating statistics based on protocol.
*
- * $Id: proto_hier_stats.c,v 1.3 2001/03/24 02:07:20 guy Exp $
+ * $Id: proto_hier_stats.c,v 1.4 2001/06/19 23:08:55 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -155,7 +155,7 @@ ph_stats_new(void)
gboolean stop_flag;
guint32 progbar_quantum;
guint32 progbar_nextstep;
- int count;
+ unsigned int count;
/* Initialize the data */
ps = g_new(ph_stats_t, 1);