Fix bug in dlog message format 05/195505/1 accepted/tizen/unified/20181217.142356 submit/tizen/20181217.043011
authorYu <jiung.yu@samsung.com>
Fri, 14 Dec 2018 05:17:51 +0000 (14:17 +0900)
committerYu <jiung.yu@samsung.com>
Fri, 14 Dec 2018 05:17:56 +0000 (14:17 +0900)
Change-Id: Iaa42369c7a5ebb8d4d62d66def07c1d6e2d1c981
Signed-off-by: Yu jiung <jiung.yu@samsung.com>
packaging/ug-setting-wifidirect-efl.spec
popup-wifidirect/src/wfd-app-popup-view.c
popup-wifidirect/src/wfd-app-util.c
ug-wifidirect/src/wfd_client.c

index b17e0b5dcb05c1b0a8a2f18467a601470a31a7b1..a3dafa6528111e38becb56996c2e01a526337a9b 100644 (file)
@@ -1,6 +1,6 @@
 Name:       ug-setting-wifidirect-efl
 Summary:    Wi-Fi Direct setting UI gadget
-Version:    1.11.88
+Version:    1.11.89
 Release:    1
 Group:      Applications/Network
 License:    Flora-1.1
index bb435c10f8ffac1be383da16deff4285b626b0e3..3b4fcf3ca68795395375d4c37c76ccc7b2562a0a 100755 (executable)
@@ -81,7 +81,7 @@ static void __popup_resp_cb(void *data, Evas_Object * obj, void *event_info)
        char msg[WFD_POP_STR_MAX_LEN] = {0};
        char *format_str = NULL;
 
-       WFD_APP_LOG(WFD_APP_LOG_HIGH, "popup resp : %d\n", resp);
+       WFD_APP_LOG(WFD_APP_LOG_HIGH, "popup resp : %lu\n", resp);
 
        switch (resp) {
        case /* MT */ WFD_POP_RESP_APRV_CONNECT_PBC_YES:
index c61b9e37425ea62a94329cb85bbbda7ab6c465ab..5b8048686a619d41eb89beee32693dc3d28331bd 100644 (file)
@@ -113,7 +113,7 @@ static void _move_data_to_app_control(const char *key, const int type,
        size_t size = 0;
 
 
-       WFD_RET_IF(data == NULL || key == NULL || type == 0, "Invialid parameter!");
+       WFD_RET_IF(data == NULL || key == NULL || type == 0, "Invialid parameter!");
 
        app_control_h control = data;
 
index ce64950c56b157714c6a688b5485c22b6250642f..3be0faf67373a50787f9aed02a9a44b2e1475017 100644 (file)
@@ -251,7 +251,7 @@ int wfd_mobile_ap_on(void *data)
        /* Register cbs */
        ret = tethering_set_enabled_cb(ugd->hotspot_handle, TETHERING_TYPE_WIFI, __enabled_cb, ugd);
        if (ret != TETHERING_ERROR_NONE) {
-               DBG(LOG_ERROR, "tethering_set_enabled_cb is failed\n", ret);
+               DBG(LOG_ERROR, "tethering_set_enabled_cb is failed [%d]\n", ret);
                return -1;
        }
 
@@ -289,7 +289,7 @@ int wfd_mobile_ap_off(void *data)
                /* Register cbs */
                ret = tethering_set_disabled_cb(ugd->hotspot_handle, TETHERING_TYPE_WIFI, __disabled_cb, ugd);
                if (ret != TETHERING_ERROR_NONE) {
-                       DBG(LOG_ERROR, "tethering_set_disabled_cb is failed\n", ret);
+                       DBG(LOG_ERROR, "tethering_set_disabled_cb is failed [%d] \n", ret);
                        return -1;
                }
                /* Disable tethering */