aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/wimax
diff options
context:
space:
mode:
authorGerasimos Dimitriadis <dimeg@intracom.gr>2009-11-17 18:35:27 +0000
committerGerasimos Dimitriadis <dimeg@intracom.gr>2009-11-17 18:35:27 +0000
commitc840cdd5a07a65b3903e443f1ed1203e60c5eba6 (patch)
tree0c1a8f4c587328fa6f7313f95799faaab62acfb4 /plugins/wimax
parent99b8600eca893ba19631de2b7438d587ceb71350 (diff)
Remove the address operator from value_string arrays fed to VALS()
svn path=/trunk/; revision=30995
Diffstat (limited to 'plugins/wimax')
-rw-r--r--plugins/wimax/msg_prc_lt_ctrl.c2
-rw-r--r--plugins/wimax/wimax_utils.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/plugins/wimax/msg_prc_lt_ctrl.c b/plugins/wimax/msg_prc_lt_ctrl.c
index 59437b40f2..8252a79cec 100644
--- a/plugins/wimax/msg_prc_lt_ctrl.c
+++ b/plugins/wimax/msg_prc_lt_ctrl.c
@@ -121,7 +121,7 @@ void proto_register_mac_mgmt_msg_prc_lt_ctrl(void)
{
"Setup/Tear-down long-term precoding with feedback",
"wimax.prc_lt_ctrl.precoding",
- FT_UINT8, BASE_DEC, VALS(&vals_turn_on), 0x80, NULL, HFILL
+ FT_UINT8, BASE_DEC, VALS(vals_turn_on), 0x80, NULL, HFILL
}
},
{
diff --git a/plugins/wimax/wimax_utils.c b/plugins/wimax/wimax_utils.c
index e265558006..0c78d3f8ef 100644
--- a/plugins/wimax/wimax_utils.c
+++ b/plugins/wimax/wimax_utils.c
@@ -834,7 +834,7 @@ void proto_register_wimax_utility_decoders(void)
},
{ /* 23 ARQ Sync Loss Timeout */
&hf_sfe_arq_sync_loss_timeout,
- {"ARQ Sync Loss Timeout (10us granularity)", "wmx.arq.sync_loss_timeout", FT_UINT16, BASE_DEC, VALS(&vals_arq_sync_loss_timeout), 0x0, NULL, HFILL}
+ {"ARQ Sync Loss Timeout (10us granularity)", "wmx.arq.sync_loss_timeout", FT_UINT16, BASE_DEC, VALS(vals_arq_sync_loss_timeout), 0x0, NULL, HFILL}
},
{ /* 20 ARQ Transmitter Delay */
&hf_sfe_arq_transmitter_delay_cor2,
@@ -850,15 +850,15 @@ void proto_register_wimax_utility_decoders(void)
},
{ /* 23 ARQ Sync Loss Timeout */
&hf_sfe_arq_sync_loss_timeout_cor2,
- {"ARQ Sync Loss Timeout (100us granularity)", "wmx.arq.sync_loss_timeout", FT_UINT16, BASE_DEC, VALS(&vals_arq_sync_loss_timeout), 0x0, NULL, HFILL}
+ {"ARQ Sync Loss Timeout (100us granularity)", "wmx.arq.sync_loss_timeout", FT_UINT16, BASE_DEC, VALS(vals_arq_sync_loss_timeout), 0x0, NULL, HFILL}
},
{ /* 24 ARQ Deliver In Order */
&hf_sfe_arq_deliver_in_order,
- {"ARQ Deliver In Order", "wmx.arq.deliver_in_order", FT_UINT8, BASE_DEC, VALS(&vals_arq_deliver_in_order), 0x0, NULL, HFILL}
+ {"ARQ Deliver In Order", "wmx.arq.deliver_in_order", FT_UINT8, BASE_DEC, VALS(vals_arq_deliver_in_order), 0x0, NULL, HFILL}
},
{ /* 25 ARQ Purge Timeout */
&hf_sfe_arq_rx_purge_timeout,
- {"ARQ RX Purge Timeout (100us granularity)", "wmx.arq.rx_purge_timeout", FT_UINT16, BASE_DEC, VALS(&vals_arq_rx_purge_timeout), 0x0, NULL, HFILL}
+ {"ARQ RX Purge Timeout (100us granularity)", "wmx.arq.rx_purge_timeout", FT_UINT16, BASE_DEC, VALS(vals_arq_rx_purge_timeout), 0x0, NULL, HFILL}
},
{ /* 26 ARQ Block Size */
&hf_sfe_arq_block_size,