aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tcp.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-08-05 13:10:58 +0000
committerJörg Mayer <jmayer@loplof.de>2005-08-05 13:10:58 +0000
commit2b2506f0f6375a8294461d55e117a183f95ae3a8 (patch)
tree9fabf7e9c531695bf37844742f4b476e93750b8f /epan/dissectors/packet-tcp.c
parentab8601b7fe82bfd5117fc7bfefb6adb5e7c2c615 (diff)
More char -> const char warning fixes
svn path=/trunk/; revision=15222
Diffstat (limited to 'epan/dissectors/packet-tcp.c')
-rw-r--r--epan/dissectors/packet-tcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-tcp.c b/epan/dissectors/packet-tcp.c
index 57e254fc89..c5240017ad 100644
--- a/epan/dissectors/packet-tcp.c
+++ b/epan/dissectors/packet-tcp.c
@@ -2744,7 +2744,7 @@ dissect_tcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_item *ti = NULL, *tf;
int offset = 0;
gchar flags[64] = "<None>";
- gchar *fstr[] = {"FIN", "SYN", "RST", "PSH", "ACK", "URG", "ECN", "CWR" };
+ const gchar *fstr[] = {"FIN", "SYN", "RST", "PSH", "ACK", "URG", "ECN", "CWR" };
gint fpos = 0, i;
guint bpos;
guint optlen;