diff options
author | Anders Broman <anders.broman@ericsson.com> | 2014-01-02 17:42:02 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2014-01-02 17:42:02 +0000 |
commit | 61c72710a72810a9ac81c9a6adabcbc303f08b6d (patch) | |
tree | 1538095f0c3dc7c72749067167fd43c4374a5ee1 /plugins/wimax/msg_aas_beam.c | |
parent | f5c6f39201ffaff122d0de32d9db10497a89cd07 (diff) | |
download | wireshark-61c72710a72810a9ac81c9a6adabcbc303f08b6d.tar.gz wireshark-61c72710a72810a9ac81c9a6adabcbc303f08b6d.tar.bz2 wireshark-61c72710a72810a9ac81c9a6adabcbc303f08b6d.zip |
Fix [-Wmissing-prototypes]
svn path=/trunk/; revision=54558
Diffstat (limited to 'plugins/wimax/msg_aas_beam.c')
-rw-r--r-- | plugins/wimax/msg_aas_beam.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/wimax/msg_aas_beam.c b/plugins/wimax/msg_aas_beam.c index 2ed42a823e..6f330c5c1c 100644 --- a/plugins/wimax/msg_aas_beam.c +++ b/plugins/wimax/msg_aas_beam.c @@ -47,6 +47,9 @@ extern gint proto_mac_mgmt_msg_aas_fbck_decoder; #define AAS_BEAM_BEAM_BIT_MASK_MASK 0xF0 #define AAS_BEAM_RESERVED_MASK 0x0F +void proto_register_mac_mgmt_msg_aas_beam(void); +void proto_reg_handoff_mac_mgmt_msg_aas_beam(void); + static gint proto_mac_mgmt_msg_aas_beam_decoder = -1; static gint ett_mac_mgmt_msg_aas_beam_select_decoder = -1; static gint ett_mac_mgmt_msg_aas_beam_req_decoder = -1; |