aboutsummaryrefslogtreecommitdiffstats
path: root/packet-giop.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-06-18 01:49:17 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-06-18 01:49:17 +0000
commit89bc50802cc54053da815c4e153b4a8c924a8c61 (patch)
tree9a0b0bdf0483f319fc5eb7a7a8af6a6d8c5bd2d3 /packet-giop.c
parent710c13b05eb8b9afdeec90482e0f96545532118e (diff)
Various signed vs. unsigned fixes, from Joerg Mayer.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3560 f5534014-38df-0310-8fa8-9805f1628bb7
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" } ,