e_hwc: fix wrong format specifier 25/218725/1 submit/tizen/20191127.101405
authorChangyeon Lee <cyeon.lee@samsung.com>
Wed, 27 Nov 2019 09:55:05 +0000 (18:55 +0900)
committerChangyeon Lee <cyeon.lee@samsung.com>
Wed, 27 Nov 2019 10:06:44 +0000 (19:06 +0900)
Change-Id: I8619ed3b2e52ce4e59bb298908a4742ad378ca56

src/bin/e_hwc.c

index d7d4e33..0598a0f 100644 (file)
@@ -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;
 }