fix build warning. 10/87610/1 accepted/tizen/common/20160909.115116 accepted/tizen/common/20160912.181835 accepted/tizen/ivi/20160912.215655 accepted/tizen/mobile/20160912.215602 accepted/tizen/tv/20160912.215619 accepted/tizen/wearable/20160912.215636 submit/tizen/20160909.060657 submit/tizen/20160912.103710
authorHyihong Chae <hh.chae@samsung.com>
Fri, 9 Sep 2016 00:56:59 +0000 (09:56 +0900)
committerHyihong Chae <hh.chae@samsung.com>
Fri, 9 Sep 2016 00:56:59 +0000 (09:56 +0900)
Change-Id: Id9eea8463c8dd3debc6daf845fa778440be71d6d
Signed-off-by: HyiHong Chae <hh.chae@samsung.com>
src/manager/net_nfc_controller.c

index 116699247a8e0a809d62e9e4844dae6b9ad14fbc..703863b49304c2d59edd3ba255de371606693bda 100755 (executable)
@@ -64,7 +64,6 @@ static void *net_nfc_controller_load_file(const char *dir_path,
 
        handle = dlopen(path, RTLD_LAZY);
        if (handle == NULL) {
-               char buffer[1024];
                DEBUG_ERR_MSG("dlopen failed, [%d] : %s",
                        errno, dlerror());
                goto ERROR;
@@ -72,7 +71,6 @@ static void *net_nfc_controller_load_file(const char *dir_path,
 
        onload = dlsym(handle, "onload");
        if (onload == NULL) {
-               char buffer[1024];
                DEBUG_ERR_MSG("dlsym failed, [%d] : %s",
                        errno, dlerror());
                goto ERROR;