aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cdp.c
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-28 07:53:38 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-28 07:53:38 +0000
commit1f24dc9fe2ec5eca71207629c1f835fa2dfc53d8 (patch)
tree64768c56b323212499a379cdaf68365fd6ee916e /epan/dissectors/packet-cdp.c
parent6c1e9b91ca23ab27012470a7e8d8a96cf6e0d748 (diff)
char -> const char warning fixes
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15126 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-cdp.c')
-rw-r--r--epan/dissectors/packet-cdp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-cdp.c b/epan/dissectors/packet-cdp.c
index bee98ceea3..ffcbf816ac 100644
--- a/epan/dissectors/packet-cdp.c
+++ b/epan/dissectors/packet-cdp.c
@@ -656,7 +656,7 @@ dissect_address_tlv(tvbuff_t *tvb, int offset, int length, proto_tree *tree)
int nlpid;
const char *protocol_str;
guint16 address_length;
- char *address_type_str;
+ const char *address_type_str;
char *address_str;
if (length < 1)