aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-lwres.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2019-07-12 15:59:12 +0200
committerPeter Wu <peter@lekensteyn.nl>2019-08-14 20:10:45 +0000
commit81d2de9252e87de83963f3f3bbfe101c65582a90 (patch)
tree9f79539c3563c8c6290410bd6a24cc6e85a1c63d /epan/dissectors/packet-lwres.c
parent0062c0d613fc24015d0a9854b2b0267d9b0470f2 (diff)
Try to fix Wpointer-sign warnings.
Change-Id: I52d24560d4061c996c25b290ee347cc55404c216 Reviewed-on: https://code.wireshark.org/review/33914 Tested-by: Petri Dish Buildbot Petri-Dish: Anders Broman <a.broman58@gmail.com> Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Diffstat (limited to 'epan/dissectors/packet-lwres.c')
-rw-r--r--epan/dissectors/packet-lwres.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-lwres.c b/epan/dissectors/packet-lwres.c
index 42ca544e57..04ed341deb 100644
--- a/epan/dissectors/packet-lwres.c
+++ b/epan/dissectors/packet-lwres.c
@@ -465,7 +465,7 @@ static void dissect_srv_records(tvbuff_t* tvb, proto_tree* tree,guint32 nrec,int
guint16 /*len, namelen,*/ priority, weight, port;
guint dlen;
guint used_bytes;
- const guchar *dname;
+ const gchar *dname;
proto_item* srv_rec_tree, *rec_tree;
@@ -533,7 +533,7 @@ static void dissect_mx_records(tvbuff_t* tvb, proto_tree* tree, guint32 nrec, in
guint priority;
guint dlen;
guint used_bytes;
- const guchar *dname;
+ const gchar *dname;
proto_tree* mx_rec_tree, *rec_tree;
@@ -581,7 +581,7 @@ static void dissect_ns_records(tvbuff_t* tvb, proto_tree* tree, guint32 nrec, in
{
guint i, curr;
guint dlen;
- const guchar *dname;
+ const gchar *dname;
guint used_bytes;
proto_tree* ns_rec_tree, *rec_tree;