aboutsummaryrefslogtreecommitdiffstats
path: root/epan/xdlc.c
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-23 11:41:25 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-23 11:41:25 +0000
commit23ec4b07a3224f817388301f64a3bea1066d828b (patch)
tree88cde02c2a8b79acb9a58e94d44b2cc686e12e9e /epan/xdlc.c
parent8e1c6eea8800b9c6b9a52a7ee90a897fb6cda442 (diff)
More 'char*' -> 'const char*' changes to fix warnings.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15015 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/xdlc.c')
-rw-r--r--epan/xdlc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/xdlc.c b/epan/xdlc.c
index f631475303..d6fb3148ab 100644
--- a/epan/xdlc.c
+++ b/epan/xdlc.c
@@ -180,11 +180,11 @@ dissect_xdlc_control(tvbuff_t *tvb, int offset, packet_info *pinfo,
guint16 control;
int control_len;
const xdlc_cf_items *cf_items;
- char *control_format;
+ const char *control_format;
guint16 poll_final;
char info[80];
proto_tree *tc, *control_tree;
- gchar *frame_type = NULL;
+ const gchar *frame_type = NULL;
const gchar *modifier;
switch (tvb_get_guint8(tvb, offset) & 0x03) {