Fix 64bit build error 52/195652/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.014745 accepted/tizen/5.5/unified/mobile/hotfix/20201027.082251 accepted/tizen/5.5/unified/wearable/hotfix/20201027.123514 accepted/tizen/unified/20181218.063041 submit/tizen/20181217.081411 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
authorYu <jiung.yu@samsung.com>
Mon, 17 Dec 2018 05:20:54 +0000 (14:20 +0900)
committerYu <jiung.yu@samsung.com>
Mon, 17 Dec 2018 05:20:57 +0000 (14:20 +0900)
Change-Id: Ifb6da222ad42951f68e5b72dd28be3f34196243c
Signed-off-by: Yu jiung <jiung.yu@samsung.com>
popup-wifidirect/src/wfd-app-popup-view.c
popup-wifidirect/src/wfd-app-util.c

index 3b4fcf3..d58170b 100755 (executable)
@@ -438,7 +438,7 @@ static void _smart_ime_cb(void *data, Evas_Object * obj, void *event_info)
 
        char *txt = elm_entry_markup_to_utf8(elm_entry_entry_get((const Evas_Object *) imf_context));
        if (NULL != txt) {
-               WFD_APP_LOG(WFD_APP_LOG_LOW, "* text [%s], len=[%d]", txt, strlen(txt));
+               WFD_APP_LOG(WFD_APP_LOG_LOW, "* text [%s], len=[%zu]", txt, strlen(txt));
                strncpy(connection->wps_pin, txt, sizeof(connection->wps_pin) - 1);
                WFD_IF_FREE_MEM(txt);
        } else {
index 5b80486..18bd5cc 100644 (file)
@@ -126,7 +126,7 @@ static void _move_data_to_app_control(const char *key, const int type,
                        return;
                }
                snprintf(buff, size + 1, "%s", ((char*) ptr));
-               WFD_APP_LOG(WFD_APP_LOG_ERROR, "Found STR -KEY: %s, VAL: %s, SIZE: %d", key, buff, size);
+               WFD_APP_LOG(WFD_APP_LOG_ERROR, "Found STR -KEY: %s, VAL: %s, SIZE: %zu", key, buff, size);
 
                app_control_add_extra_data(control, key, buff);
                free(buff);
@@ -139,7 +139,7 @@ static void _move_data_to_app_control(const char *key, const int type,
                        return;
                }
                snprintf(buff, size + 1, "%s", ((char*) ptr));
-               WFD_APP_LOG(WFD_APP_LOG_ERROR, "Found STR -KEY: %s, VAL: %s, SIZE: %d", key, buff, size);
+               WFD_APP_LOG(WFD_APP_LOG_ERROR, "Found STR -KEY: %s, VAL: %s, SIZE: %zu", key, buff, size);
 
                app_control_add_extra_data(control, key, buff);
                free(buff);