summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-07-06 21:34:06 -0700
committerGuy Harris <guy@alum.mit.edu>2014-07-07 04:34:34 +0000
commite286acd05fc5494a9cc12e5b80a3ccbd2a7f5251 (patch)
tree89a4d9fecb5b39651d892e30973ba904693198e3
parent9dfb3e7b46461bed36ba35a96d800f91288305ba (diff)
downloadwireshark-e286acd05fc5494a9cc12e5b80a3ccbd2a7f5251.tar.gz
Squelch compiler warning.
Change-Id: I37c495cb4d68b95d8388c654bbf6a817167261ac Reviewed-on: https://code.wireshark.org/review/2909 Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rw-r--r--plugins/wimaxasncp/packet-wimaxasncp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/wimaxasncp/packet-wimaxasncp.c b/plugins/wimaxasncp/packet-wimaxasncp.c
index 732646308d..019ef86a4d 100644
--- a/plugins/wimaxasncp/packet-wimaxasncp.c
+++ b/plugins/wimaxasncp/packet-wimaxasncp.c
@@ -2132,7 +2132,7 @@ dissect_wimaxasncp(
proto_tree *tree,
void *data _U_)
{
- const gchar *unknown = "Unknown";
+ static const gchar unknown[] = "Unknown";
/* Set up structures needed to add the protocol subtree and manage it */
proto_item *packet_item = NULL;