aboutsummaryrefslogtreecommitdiffstats
path: root/packet-giop.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-04-27 01:27:37 +0000
committerGuy Harris <guy@alum.mit.edu>2001-04-27 01:27:37 +0000
commitc3271d0a764079e1cd6243b06ced97194d207308 (patch)
treed978dd373d6934c0fd5abd3fad1abfae77aea11f /packet-giop.c
parent1ac49ed4ce5b1e53b6d78af9fdc04902e0fb05c4 (diff)
More signed-vs-unsigned changes from Joerg Mayer.
svn path=/trunk/; revision=3386
Diffstat (limited to 'packet-giop.c')
-rw-r--r--packet-giop.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/packet-giop.c b/packet-giop.c
index a6250cfe59..035aae33ef 100644
--- a/packet-giop.c
+++ b/packet-giop.c
@@ -4,7 +4,7 @@
* Laurent Deniel <deniel@worldnet.fr>
* Craig Rodrigues <rodrigc@mediaone.net>
*
- * $Id: packet-giop.c,v 1.31 2001/02/26 22:19:12 oabad Exp $
+ * $Id: packet-giop.c,v 1.32 2001/04/27 01:27:36 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -259,7 +259,7 @@ LocateReplyHeader;
static void
printable_string (gchar *in, guint32 len)
{
- int i = 0;
+ guint32 i = 0;
for(i=0; i < len; i++)
{
@@ -554,7 +554,7 @@ dissect_giop_reply (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree,
proto_tree *reply_tree = NULL;
proto_item *tf;
- int i;
+ guint32 i;
big_endian = is_big_endian (header);
@@ -685,7 +685,7 @@ dissect_giop_reply_1_2 (tvbuff_t * tvb, packet_info * pinfo,
guint32 reply_status;
proto_tree *reply_tree = NULL;
proto_item *tf;
- int i;
+ guint32 i;
if (tree)
{
@@ -827,7 +827,7 @@ dissect_giop_request_1_1 (tvbuff_t * tvb, packet_info * pinfo,
gchar *reserved = NULL;
proto_tree *request_tree = NULL;
proto_item *tf;
- int i;
+ guint32 i;
if (tree)