aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/wimax/msg_dsd.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2009-08-04 23:14:40 +0000
committerGuy Harris <guy@alum.mit.edu>2009-08-04 23:14:40 +0000
commit6847b0b94d619f2e4092c195573a214a8abdac54 (patch)
treed559a2aeed43de0710fd3c3352e1ed7568330313 /plugins/wimax/msg_dsd.c
parentc9e3f66d144fc36a29ad9a49336002044525a776 (diff)
Put the initializers for the elements of value_string arrays into curly
brackets, so the API checks for non-terminated value_string arrays will not falsely think the arrays are non-terminated. svn path=/trunk/; revision=29299
Diffstat (limited to 'plugins/wimax/msg_dsd.c')
-rw-r--r--plugins/wimax/msg_dsd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/wimax/msg_dsd.c b/plugins/wimax/msg_dsd.c
index 599a40465b..f625572cb9 100644
--- a/plugins/wimax/msg_dsd.c
+++ b/plugins/wimax/msg_dsd.c
@@ -54,9 +54,9 @@ static gint ett_mac_mgmt_msg_dsd_rsp_decoder = -1;
static const value_string vals_dsd_msgs[] =
{
- MAC_MGMT_MSG_DSD_REQ, "Dynamic Service Deletion Request (DSD-REQ)",
- MAC_MGMT_MSG_DSD_RSP, "Dynamic Service Deletion Response (DSD-RSP)",
- 0, NULL
+ { MAC_MGMT_MSG_DSD_REQ, "Dynamic Service Deletion Request (DSD-REQ)" },
+ { MAC_MGMT_MSG_DSD_RSP, "Dynamic Service Deletion Response (DSD-RSP)" },
+ { 0, NULL }
};
/* fix fields */