aboutsummaryrefslogtreecommitdiffstats
path: root/packet-isdn.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2003-12-21 12:07:09 +0000
committerJörg Mayer <jmayer@loplof.de>2003-12-21 12:07:09 +0000
commitb87ead52d370989417477611a60724ef44840b12 (patch)
tree7dcccfaac28a4816a7c7fc35de408aafaab35430 /packet-isdn.c
parent3086e0b9e70f33578fb28208e31dca10189e680d (diff)
warning: overflow in implicit constant conversion
svn path=/trunk/; revision=9391
Diffstat (limited to 'packet-isdn.c')
-rw-r--r--packet-isdn.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-isdn.c b/packet-isdn.c
index 5447b86926..e3ef57bf72 100644
--- a/packet-isdn.c
+++ b/packet-isdn.c
@@ -1,7 +1,7 @@
/* packet-isdn.c
* Routines for ISDN packet disassembly
*
- * $Id: packet-isdn.c,v 1.4 2003/06/10 05:53:33 guy Exp $
+ * $Id: packet-isdn.c,v 1.5 2003/12/21 12:07:09 jmayer Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -81,8 +81,8 @@ dissect_isdn(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
proto_tree *isdn_tree;
proto_item *ti;
- static const char v120_sabme[3] = { 0x08, 0x01, 0x7F };
- static const char ppp[2] = { 0xFF, 0x03 };
+ static const guint8 v120_sabme[3] = { 0x08, 0x01, 0x7F };
+ static const guint8 ppp[2] = { 0xFF, 0x03 };
circuit_t *circuit;
if (check_col(pinfo->cinfo, COL_PROTOCOL))