From: Changyeon Lee Date: Wed, 27 Nov 2019 09:55:05 +0000 (+0900) Subject: e_hwc: fix wrong format specifier X-Git-Tag: submit/tizen/20191127.101405^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ee13c631bcb50822d171b70a84a53b3af19076fb;p=platform%2Fupstream%2Fenlightenment.git e_hwc: fix wrong format specifier Change-Id: I8619ed3b2e52ce4e59bb298908a4742ad378ca56 --- diff --git a/src/bin/e_hwc.c b/src/bin/e_hwc.c index d7d4e33fbc..0598a0f6b6 100644 --- a/src/bin/e_hwc.c +++ b/src/bin/e_hwc.c @@ -631,7 +631,7 @@ e_hwc_property_get(E_Hwc *hwc, unsigned int id, hwc_value *value) memcpy(&value->ptr, &tvalue.ptr, sizeof(tdm_value)); - EHINF("Get property id:%u value:%llu", hwc, id, value->u64); + EHINF("Get property id:%u value:%u", hwc, id, (unsigned int)value->u32); return EINA_TRUE; } @@ -655,7 +655,7 @@ e_hwc_property_set(E_Hwc *hwc, unsigned int id, hwc_value value) hwc->property_changed = EINA_TRUE; - EHINF("Set property id:%u value:%llu", hwc, id, value.u64); + EHINF("Set property id:%u value:%u", hwc, id, (unsigned int)value.u32); return EINA_TRUE; } @@ -724,8 +724,8 @@ e_client_hwc_property_get(E_Client *ec, unsigned int id, hwc_value *value) memcpy(&value->ptr, &tvalue.ptr, sizeof(tdm_value)); - EHINF("Get hwc_window:%p property id:%u value:%llu", - hwc_window->hwc, hwc_window, id, value->u64); + EHINF("Get hwc_window:%p property id:%u value:%u", + hwc_window->hwc, hwc_window, id, (unsigned int)value->u32); return EINA_TRUE; } @@ -775,8 +775,8 @@ e_client_hwc_property_set(E_Client *ec, unsigned int id, hwc_value value) return EINA_FALSE; } - EHINF("Set hwc_window:%p property id:%u value:%llu", - hwc_window->hwc, hwc_window, id, value.u64); + EHINF("Set hwc_window:%p property id:%u value:%u", + hwc_window->hwc, hwc_window, id, (unsigned int)value.u32); return EINA_TRUE; }