aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-nntp.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-08-05 00:23:22 +0000
committerJörg Mayer <jmayer@loplof.de>2005-08-05 00:23:22 +0000
commit69dcb66cd9d74b27f85a1dceca2735fd68732c1b (patch)
tree3c3e24728558c5082c714381cfbb089836bcdac2 /epan/dissectors/packet-nntp.c
parent63728d5770c3eae2cbc2130454eca1188c8c12e5 (diff)
More char -> const char warning fixes
svn path=/trunk/; revision=15218
Diffstat (limited to 'epan/dissectors/packet-nntp.c')
-rw-r--r--epan/dissectors/packet-nntp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-nntp.c b/epan/dissectors/packet-nntp.c
index 71478fcd07..77b5aca40d 100644
--- a/epan/dissectors/packet-nntp.c
+++ b/epan/dissectors/packet-nntp.c
@@ -45,7 +45,7 @@ static gint ett_nntp = -1;
static void
dissect_nntp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
- gchar *type;
+ const gchar *type;
proto_tree *nntp_tree;
proto_item *ti;
gint offset = 0;