summaryrefslogtreecommitdiff
path: root/packet-giop.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-06-18 01:49:17 +0000
committerGuy Harris <guy@alum.mit.edu>2001-06-18 01:49:17 +0000
commitb9222c0011e362d2ba9895af4eaef04a3d72c8c6 (patch)
tree9a0b0bdf0483f319fc5eb7a7a8af6a6d8c5bd2d3 /packet-giop.c
parentc8554ff99aa8c573adde8afd44edbbd1806c47df (diff)
downloadwireshark-b9222c0011e362d2ba9895af4eaef04a3d72c8c6.tar.gz
Various signed vs. unsigned fixes, from Joerg Mayer.
svn path=/trunk/; revision=3560
Diffstat (limited to 'packet-giop.c')
-rw-r--r--packet-giop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-giop.c b/packet-giop.c
index 035aae33ef..8cb4a320a0 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.32 2001/04/27 01:27:36 guy Exp $
+ * $Id: packet-giop.c,v 1.33 2001/06/18 01:49:16 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -99,7 +99,7 @@ static const value_string giop_locate_status_types[] = {
static const guint GIOP_MAJOR = 1;
static const guint GIOP_MINOR = 2;
-static const guint GIOP_HEADER_SIZE = 12;
+static const gint GIOP_HEADER_SIZE = 12;
static const int KeyAddr = 0;
static const int ProfileAddr = 1;
@@ -198,7 +198,7 @@ typedef enum ReplyStatusType
}
ReplyStatusType;
-const static value_string reply_status_types[] = {
+static const value_string reply_status_types[] = {
{ NO_EXCEPTION, "No Exception" } ,
{ USER_EXCEPTION, "User Exception" } ,
{ SYSTEM_EXCEPTION, "System Exception" } ,