From: Jouni Malinen Date: Thu, 19 Feb 2015 10:48:51 +0000 (+0200) Subject: Android: Silence unused function parameter warnings X-Git-Tag: hostap_2_4~129 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ebe8d3f254c125437a377314abb75a0d8d09ee32;p=thirdparty%2Fhostap.git Android: Silence unused function parameter warnings Numbers of hs20-osu-client functions do not use all of the parameters currently. This makes the compiler output difficult to read due to undesired warning messages. Get rid of those specific warnings for now. Signed-off-by: Jouni Malinen --- diff --git a/hs20/client/Android.mk b/hs20/client/Android.mk index 1f2dfd214..536c56b0f 100644 --- a/hs20/client/Android.mk +++ b/hs20/client/Android.mk @@ -68,6 +68,8 @@ L_CFLAGS += -DEAP_TLS_OPENSSL #CFLAGS += $(shell xml2-config --cflags) #LIBS += $(shell xml2-config --libs) +L_CFLAGS += -Wno-unused-parameter + ######################## include $(CLEAR_VARS)