summaryrefslogtreecommitdiff
path: root/mac80211.h
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2013-08-09 11:25:52 +0200
committerTobias Klauser <tklauser@distanz.ch>2013-08-09 11:25:52 +0200
commit15ef4943912f53d784c6150fa9fc368809a0d221 (patch)
tree519ff16056d2f94f05f07a204ed413d122d54928 /mac80211.h
parentb6828945dc12cbf447913445fb0e61745e7779f6 (diff)
mac80211.c: Remove or mark unused function parameters
Compiling with "-W -Wall -Wextra" reveals the following warnings in mac80211.c: mac80211.c: In function ‘nl80211_init’: mac80211.c:78:67: warning: unused parameter ‘device’ [-Wunused-parameter] mac80211.c: In function ‘nl80211_wait_handler’: mac80211.c:106:48: warning: unused parameter ‘msg’ [-Wunused-parameter] mac80211.c: In function ‘nl80211_error_handler’: mac80211.c:115:54: warning: unused parameter ‘nla’ [-Wunused-parameter] mac80211.c:117:12: warning: unused parameter ‘arg’ [-Wunused-parameter] mac80211.c: In function ‘nl80211_del_mon_if’: mac80211.c:181:72: warning: unused parameter ‘device’ [-Wunused-parameter] Fix them by either marking them as unused (where we need to conform to library APIs or remove them alltogether (for our own APIs). For the function leave_rfmon_mac80211() the according users (netsniff-ng and trafgen) are also changed. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'mac80211.h')
-rw-r--r--mac80211.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mac80211.h b/mac80211.h
index 7803625..dea4ae0 100644
--- a/mac80211.h
+++ b/mac80211.h
@@ -2,6 +2,6 @@
#define MAC80211_H
extern void enter_rfmon_mac80211(const char *device, char **mondev);
-extern void leave_rfmon_mac80211(const char *device, const char *mondev);
+extern void leave_rfmon_mac80211(const char *mondev);
#endif /* MAC80211_H */