aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-clnp.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-07-26 08:01:16 +0000
committerJörg Mayer <jmayer@loplof.de>2005-07-26 08:01:16 +0000
commit7949c7f31cea19a34c70dae4f4288e188d9cf260 (patch)
tree0bdf411fd24930617ec62293a2c341905eaf7ad9 /epan/dissectors/packet-clnp.c
parent0e9e556e5acfca7cb947af4c8ca70e0bcf74f3e8 (diff)
char -> const char warning fixes
svn path=/trunk/; revision=15079
Diffstat (limited to 'epan/dissectors/packet-clnp.c')
-rw-r--r--epan/dissectors/packet-clnp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-clnp.c b/epan/dissectors/packet-clnp.c
index 681aca1952..f280247ac8 100644
--- a/epan/dissectors/packet-clnp.c
+++ b/epan/dissectors/packet-clnp.c
@@ -793,7 +793,7 @@ static int ositp_decode_DR(tvbuff_t *tvb, int offset, guint8 li, guint8 tpdu,
proto_item *ti;
guint16 dst_ref, src_ref;
guchar reason;
- char *str;
+ const char *str;
if (li < LI_MIN_DR)
return -1;
@@ -1574,7 +1574,7 @@ static int ositp_decode_ER(tvbuff_t *tvb, int offset, guint8 li, guint8 tpdu,
{
proto_tree *cotp_tree;
proto_item *ti;
- char *str;
+ const char *str;
guint16 dst_ref;
if (li > LI_MAX_ER)