From: Jouni Malinen Date: Sun, 11 Dec 2011 16:19:24 +0000 (+0200) Subject: Fix compiler warning with CONFIG_NO_STDOUT_DEBUG=y X-Git-Tag: aosp-jb-start~148 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5506d18418f4632c2d1349f392104c0c39fc2610;p=thirdparty%2Fhostap.git Fix compiler warning with CONFIG_NO_STDOUT_DEBUG=y Signed-hostap: Jouni Malinen --- diff --git a/wpa_supplicant/p2p_supplicant.c b/wpa_supplicant/p2p_supplicant.c index 494d74a4f..6f6edc60f 100644 --- a/wpa_supplicant/p2p_supplicant.c +++ b/wpa_supplicant/p2p_supplicant.c @@ -972,6 +972,7 @@ void wpas_dev_found(void *ctx, const u8 *addr, const struct p2p_peer_info *info, int new_device) { +#ifndef CONFIG_NO_STDOUT_DEBUG struct wpa_supplicant *wpa_s = ctx; char devtype[WPS_DEV_TYPE_BUFSIZE]; @@ -984,6 +985,7 @@ void wpas_dev_found(void *ctx, const u8 *addr, sizeof(devtype)), info->device_name, info->config_methods, info->dev_capab, info->group_capab); +#endif /* CONFIG_NO_STDOUT_DEBUG */ wpas_notify_p2p_device_found(ctx, info->p2p_device_addr, new_device); }