aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/wimax
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2012-04-10 10:20:20 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2012-04-10 10:20:20 +0000
commit8fca2eb7e586c88354210e58cf22bac4d4fddd8d (patch)
tree1097c70646c5581b4009674b268491a9ca342c60 /plugins/wimax
parenta125dc89b7b5944679d957769c9da22e53a4d8e9 (diff)
Add missing consts.
svn path=/trunk/; revision=42004
Diffstat (limited to 'plugins/wimax')
-rw-r--r--plugins/wimax/mac_hd_type1_decoder.c2
-rw-r--r--plugins/wimax/mac_hd_type2_decoder.c2
-rw-r--r--plugins/wimax/mac_mgmt_msg_decoder.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/wimax/mac_hd_type1_decoder.c b/plugins/wimax/mac_hd_type1_decoder.c
index 18bcbedd28..17b8215947 100644
--- a/plugins/wimax/mac_hd_type1_decoder.c
+++ b/plugins/wimax/mac_hd_type1_decoder.c
@@ -66,7 +66,7 @@ enum
TYPE_I_SUBTYPE_MAX
} TYPE_I_SUBTYPE;
-static char *type1_subtype_abbrv[TYPE_I_SUBTYPE_MAX] =
+static const char *type1_subtype_abbrv[TYPE_I_SUBTYPE_MAX] =
{
"BR INCREMENTAL", /* 0 */
"BR AGGREGATE", /* 1 */
diff --git a/plugins/wimax/mac_hd_type2_decoder.c b/plugins/wimax/mac_hd_type2_decoder.c
index d9eaf63858..908fc1d3dd 100644
--- a/plugins/wimax/mac_hd_type2_decoder.c
+++ b/plugins/wimax/mac_hd_type2_decoder.c
@@ -72,7 +72,7 @@ enum
TYPE_II_FB_TYPE_MAX
} TYPE_II_FB_TYPE;
-static char *type2_fb_type_abbrv[TYPE_II_FB_TYPE_MAX] =
+static const char *type2_fb_type_abbrv[TYPE_II_FB_TYPE_MAX] =
{
"CQI and MIMO Feedback",
"DL average CINR",
diff --git a/plugins/wimax/mac_mgmt_msg_decoder.c b/plugins/wimax/mac_mgmt_msg_decoder.c
index 2aa0c8a50c..fb34d9f250 100644
--- a/plugins/wimax/mac_mgmt_msg_decoder.c
+++ b/plugins/wimax/mac_mgmt_msg_decoder.c
@@ -111,7 +111,7 @@ static gint proto_mac_mgmt_msg_decoder = -1;
static gint ett_mac_mgmt_msg_decoder = -1;
/* WIMAX MAC Management message type info */
-char *mgt_msg_abbrv[MAC_MGMT_MSG_TYPE_MAX] =
+static const char *mgt_msg_abbrv[MAC_MGMT_MSG_TYPE_MAX] =
{
"UCD", /* 0 */
"DCD",