aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ncp-sss.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2010-06-09 18:12:17 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2010-06-09 18:12:17 +0000
commit4a0585f78ce6708d331d57bfd09487c5e33e7e1b (patch)
treef7430a2ebe788d37ae3518e97815dff4d048bd27 /epan/dissectors/packet-ncp-sss.c
parent352f9da2ce7a9ef112d0455a40631b5d40b135f7 (diff)
Do some constifying [or other] based upon gcc -Wwrite-strings warnings.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33198 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-ncp-sss.c')
-rw-r--r--epan/dissectors/packet-ncp-sss.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-ncp-sss.c b/epan/dissectors/packet-ncp-sss.c
index 9dc5f8a58e..4840107954 100644
--- a/epan/dissectors/packet-ncp-sss.c
+++ b/epan/dissectors/packet-ncp-sss.c
@@ -170,9 +170,9 @@ static void
process_flags(proto_tree *sss_tree, tvbuff_t *tvb, guint32 foffset)
{
gchar flags_str[1024];
- gchar *sep;
- proto_item *tinew;
- proto_tree *flags_tree;
+ const gchar *sep;
+ proto_item *tinew;
+ proto_tree *flags_tree;
guint32 i;
guint32 bvalue = 0;
guint32 flags = 0;