summaryrefslogtreecommitdiff
path: root/dissector_80211.c
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2013-07-13 16:45:05 +0200
committerTobias Klauser <tklauser@distanz.ch>2013-07-13 16:46:15 +0200
commit3fb9ca90bffa92e5c5399440994170c4b8cb96f1 (patch)
tree00ff7762ea6cb3dffea46b4af71d142b8049e7c4 /dissector_80211.c
parentdbc15575a7e0ab843931643c573404081cd3582c (diff)
dissector: Mark unused parameters with __maybe_unused
In order to avoid compiler warnings when compiling with -W/-Wunused-parameter, mark unused function parameters with __maybe_unused. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'dissector_80211.c')
-rw-r--r--dissector_80211.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dissector_80211.c b/dissector_80211.c
index f39a8a2..472a44d 100644
--- a/dissector_80211.c
+++ b/dissector_80211.c
@@ -34,9 +34,9 @@ static void dissector_init_layer_2(int type)
for_each_hash_int(&ieee80211_lay2, dissector_set_print_type, type);
}
#else
-static inline void dissector_init_entry(int type) {}
-static inline void dissector_init_exit(int type) {}
-static void dissector_init_layer_2(int type) {}
+static inline void dissector_init_entry(int type __maybe_unused) {}
+static inline void dissector_init_exit(int type __maybe_unused) {}
+static void dissector_init_layer_2(int type __maybe_unused) {}
#endif
void dissector_init_ieee80211(int fnttype)