aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-vines.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-08-05 13:10:58 +0000
committerJörg Mayer <jmayer@loplof.de>2005-08-05 13:10:58 +0000
commit2b2506f0f6375a8294461d55e117a183f95ae3a8 (patch)
tree9fabf7e9c531695bf37844742f4b476e93750b8f /epan/dissectors/packet-vines.c
parentab8601b7fe82bfd5117fc7bfefb6adb5e7c2c615 (diff)
More char -> const char warning fixes
svn path=/trunk/; revision=15222
Diffstat (limited to 'epan/dissectors/packet-vines.c')
-rw-r--r--epan/dissectors/packet-vines.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-vines.c b/epan/dissectors/packet-vines.c
index 4a59017bf8..ca843360f9 100644
--- a/epan/dissectors/packet-vines.c
+++ b/epan/dissectors/packet-vines.c
@@ -1026,11 +1026,11 @@ static const value_string vines_rtp_info_type_vals[] = {
};
static void rtp_show_machine_type(proto_tree *tree, tvbuff_t *tvb, int offset,
- char *tag);
+ const char *tag);
static void rtp_show_flags(proto_tree *tree, tvbuff_t *tvb, int offset,
- char *tag);
+ const char *tag);
static int srtp_show_machine_info(proto_tree *tree, tvbuff_t *tvb, int offset,
- char *tag);
+ const char *tag);
static int rtp_show_gateway_info(proto_tree *tree, tvbuff_t *tvb, int offset,
guint8 link_addr_length, guint8 source_route_length);
@@ -1404,7 +1404,7 @@ dissect_vines_rtp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
}
static void
-rtp_show_machine_type(proto_tree *tree, tvbuff_t *tvb, int offset, char *tag)
+rtp_show_machine_type(proto_tree *tree, tvbuff_t *tvb, int offset, const char *tag)
{
guint8 machine_type;
proto_item *ti;
@@ -1432,7 +1432,7 @@ rtp_show_machine_type(proto_tree *tree, tvbuff_t *tvb, int offset, char *tag)
}
static void
-rtp_show_flags(proto_tree *tree, tvbuff_t *tvb, int offset, char *tag)
+rtp_show_flags(proto_tree *tree, tvbuff_t *tvb, int offset, const char *tag)
{
guint8 flags;
proto_item *ti;
@@ -1461,7 +1461,7 @@ rtp_show_flags(proto_tree *tree, tvbuff_t *tvb, int offset, char *tag)
}
static int
-srtp_show_machine_info(proto_tree *tree, tvbuff_t *tvb, int offset, char *tag)
+srtp_show_machine_info(proto_tree *tree, tvbuff_t *tvb, int offset, const char *tag)
{
guint16 metric;
guint8 node_type;