aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-manolito.c
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-30 16:34:38 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-30 16:34:38 +0000
commitb33c6b9563efdc7fcced921888244d30bd0fb509 (patch)
tree9dfa68d0b17ff7a5b589a851e264a77b99ab2852 /epan/dissectors/packet-manolito.c
parente08d23a43941e5346c0daa29b361761e33c9215b (diff)
More char -> const char fixes
Declare some functions static git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15158 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-manolito.c')
-rw-r--r--epan/dissectors/packet-manolito.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-manolito.c b/epan/dissectors/packet-manolito.c
index 0648e8d01f..3efb6583b3 100644
--- a/epan/dissectors/packet-manolito.c
+++ b/epan/dissectors/packet-manolito.c
@@ -66,7 +66,7 @@ dissect_manolito(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
/* Set up structures needed to add the protocol subtree and manage it */
proto_item *ti;
proto_tree *manolito_tree;
- char* packet_type = 0;
+ const char* packet_type = 0;
/* Make entries in Protocol column and Info column on summary display */
if (check_col(pinfo->cinfo, COL_PROTOCOL))
@@ -125,7 +125,7 @@ dissect_manolito(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
guint8* data; /* payload */
int start; /* field starting location */
char field_name_str[3]; /* printable name */
- char* longname; /* human-friendly field name */
+ const char* longname; /* human-friendly field name */
start = offset;