From 38e5789a69d8333b52fd5dd9c80780f3f1cddc68 Mon Sep 17 00:00:00 2001 From: Nam KwanWoo Date: Mon, 9 Sep 2013 19:07:58 +0900 Subject: [PATCH] fix build error /home/abuild/rpmbuild/BUILD/capi-system-info-0.1.14/src/system_info_device.c:490:2: error: implicit declaration of function 'net_nfc_is_supported' [-Werror=implicit-function-declaration] Change-Id: Iae72ff724d0a259593a5720253229e3a2440bab0 Signed-off-by: Nam KwanWoo --- src/system_info_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system_info_device.c b/src/system_info_device.c index c8c6770..c523ec6 100644 --- a/src/system_info_device.c +++ b/src/system_info_device.c @@ -487,7 +487,7 @@ int system_info_get_nfc_supported(system_info_key_e key, system_info_data_type_e supported = (bool *)value; - if (NET_NFC_OK == net_nfc_is_supported(&nfc_supported)) + if (NET_NFC_OK == net_nfc_client_is_nfc_supported(&nfc_supported)) *supported = true; else *supported = false; -- 2.7.4