aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ax25.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-12-21 05:34:38 +0000
committerGuy Harris <guy@alum.mit.edu>2012-12-21 05:34:38 +0000
commite2b61c828f586997857d72345cd1f00a5ac3596b (patch)
tree3fcc867b9d1a07a39fc89c48cc31f15bcfa7ce3e /epan/dissectors/packet-ax25.c
parent14d5511143598633e689b718d4e4aa91913e6dfd (diff)
Constify some character pointer variables to avoid warnings about
strings being assigned to them. svn path=/trunk/; revision=46653
Diffstat (limited to 'epan/dissectors/packet-ax25.c')
-rw-r--r--epan/dissectors/packet-ax25.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ax25.c b/epan/dissectors/packet-ax25.c
index 4d72c510d0..635862b80e 100644
--- a/epan/dissectors/packet-ax25.c
+++ b/epan/dissectors/packet-ax25.c
@@ -134,7 +134,7 @@ dissect_ax25( tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree )
int via_index;
char *info_buffer;
/* char v2cmdresp; */
- char *ax25_version;
+ const char *ax25_version;
int is_response;
const guint8 *src_addr;
const guint8 *dst_addr;