Fix dlog format error 76/195076/1 accepted/tizen_5.5_unified accepted/tizen_5.5_unified_mobile_hotfix accepted/tizen_5.5_unified_wearable_hotfix tizen_5.5 tizen_5.5_mobile_hotfix tizen_5.5_tv tizen_5.5_wearable_hotfix accepted/tizen/5.5/unified/20191031.014625 accepted/tizen/5.5/unified/mobile/hotfix/20201027.082745 accepted/tizen/5.5/unified/wearable/hotfix/20201027.123821 accepted/tizen/unified/20181211.064652 submit/tizen/20181210.103449 submit/tizen_5.5/20191031.000001 submit/tizen_5.5_mobile_hotfix/20201026.185101 submit/tizen_5.5_wearable_hotfix/20201026.184301 tizen_5.5.m2_release
authorSeonah Moon <seonah1.moon@samsung.com>
Mon, 10 Dec 2018 10:32:22 +0000 (19:32 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Mon, 10 Dec 2018 10:32:27 +0000 (19:32 +0900)
Change-Id: I15d985517accb0e799aa7b8f8527d80f358a22a2

packaging/ug-setting-mobileap-efl.spec
src/mh_common_utility.c
src/mh_func_onoff.c

index d337fdc..b63a140 100755 (executable)
@@ -3,7 +3,7 @@
 
 Name:          ug-setting-mobileap-efl
 Summary:       Tethering UI Gadget Library
-Version:       1.0.160
+Version:       1.0.161
 Release:       1
 Group:         App/Network
 License:       Flora-1.1
index bab0256..f12206d 100644 (file)
@@ -559,7 +559,7 @@ connection_cellular_state_e _get_cellular_state(void)
        }
        ret = connection_get_cellular_state(handle, &cellular_state);
        if (ret != CONNECTION_ERROR_NONE) {
-               ERR("connection_get_cellular_state() is failed : %d\n");
+               ERR("connection_get_cellular_state() is failed : %d\n", ret);
                connection_destroy(handle);
                return CONNECTION_CELLULAR_STATE_OUT_OF_SERVICE;
        }
index b251f95..c288559 100644 (file)
@@ -147,7 +147,7 @@ static bool __is_connected_wifi_net(mh_appdata_t *ad)
 
        ret = connection_get_wifi_state(ad->conn_handle, &wifi_state);
        if (ret != CONNECTION_ERROR_NONE) {
-               ERR("connection_get_wifi_state() is failed : %d\n");
+               ERR("connection_get_wifi_state() is failed : %d\n", ret);
                return false;
        }
 
@@ -167,7 +167,7 @@ static bool __is_connected_ethernet_net(mh_appdata_t *ad)
 
        ret = connection_get_ethernet_state(ad->conn_handle, &ethernet_state);
        if (ret != CONNECTION_ERROR_NONE) {
-               ERR("connection_get_ethernet_state() is failed : %d\n");
+               ERR("connection_get_ethernet_state() is failed : %d\n", ret);
                return false;
        }