Fix unused parameter warning when building mech_eap
authorLuke Howard <lukeh@padl.com>
Tue, 15 Mar 2011 02:24:08 +0000 (13:24 +1100)
committerLuke Howard <lukeh@padl.com>
Tue, 15 Mar 2011 02:24:08 +0000 (13:24 +1100)
src/eap_peer/eap_methods.h
src/utils/common.h

index 57302b2..8045a4d 100644 (file)
@@ -80,12 +80,12 @@ int eap_peer_method_unload(struct eap_method *method);
 
 #else /* CONFIG_DYNAMIC_EAP_METHODS */
 
-static inline int eap_peer_method_load(const char *so)
+static inline int eap_peer_method_load(const char *so UNUSED)
 {
        return 0;
 }
 
-static inline int eap_peer_method_unload(struct eap_method *method)
+static inline int eap_peer_method_unload(struct eap_method *method UNUSED)
 {
        return 0;
 }
index f17bf69..96ff59c 100644 (file)
@@ -337,9 +337,11 @@ static inline unsigned int wpa_swap_32(unsigned int v)
 #ifdef __GNUC__
 #define PRINTF_FORMAT(a,b) __attribute__ ((format (printf, (a), (b))))
 #define STRUCT_PACKED __attribute__ ((packed))
+#define UNUSED __attribute__ ((unused))
 #else
 #define PRINTF_FORMAT(a,b)
 #define STRUCT_PACKED
+#define UNUSED
 #endif