aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-trmac.c
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-05 13:10:58 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-05 13:10:58 +0000
commit24acdde0e3ea58cbb9b5f6604123297bfbf538fd (patch)
tree9fabf7e9c531695bf37844742f4b476e93750b8f /epan/dissectors/packet-trmac.c
parent8257dc88b0dc04d74dcf0f1066d3e727ab931072 (diff)
More char -> const char warning fixes
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15222 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-trmac.c')
-rw-r--r--epan/dissectors/packet-trmac.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/epan/dissectors/packet-trmac.c b/epan/dissectors/packet-trmac.c
index c2b5f07aa9..91616dd202 100644
--- a/epan/dissectors/packet-trmac.c
+++ b/epan/dissectors/packet-trmac.c
@@ -103,9 +103,11 @@ sv_text(tvbuff_t *tvb, int svoff, proto_tree *tree)
int sv_length = tvb_get_guint8(tvb, svoff+0);
guint16 beacon_type, ring;
- char *beacon[] = {"Recovery mode set", "Signal loss error",
+ const char *beacon[] = {
+ "Recovery mode set", "Signal loss error",
"Streaming signal not Claim Token MAC frame",
- "Streaming signal, Claim Token MAC frame"};
+ "Streaming signal, Claim Token MAC frame"
+ };
proto_tree *sv_tree;
proto_item *ti;