From 430d565ccc8efc04c73dd28e30486ddd5b0cfd17 Mon Sep 17 00:00:00 2001 From: David Herrmann Date: Thu, 8 May 2014 11:34:51 +0200 Subject: [PATCH] wifi: declare supplicant_set_wfd_subelements() The declaration is missing, add it to suppress 'unknown function' warnings. Signed-off-by: David Herrmann --- src/wifi/wifid.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wifi/wifid.h b/src/wifi/wifid.h index 8867cc8..90da9d4 100644 --- a/src/wifi/wifid.h +++ b/src/wifi/wifid.h @@ -47,6 +47,7 @@ bool supplicant_is_running(struct supplicant *s); bool supplicant_is_ready(struct supplicant *s); int supplicant_set_friendly_name(struct supplicant *s, const char *name); +int supplicant_set_wfd_subelements(struct supplicant *s, const char *val); int supplicant_p2p_start_scan(struct supplicant *s); void supplicant_p2p_stop_scan(struct supplicant *s); bool supplicant_p2p_scanning(struct supplicant *s);