Fix build error 73/323973/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Mon, 12 May 2025 02:53:57 +0000 (11:53 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Mon, 12 May 2025 02:53:57 +0000 (11:53 +0900)
Change-Id: Ifdcbb62837df407cd9ea4c069c5eaa3d89bd9752
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
src/e_test_event.cpp

index f2fbc6a38e68bdb5d3758db53348163690306885..9722c1cc83a423fd8ae40c3d631999094dbca4d5 100644 (file)
@@ -2629,7 +2629,7 @@ _cb_ecore_mouse_button_down(void *data, int type, void *event)
           {
             if (checkEcoreDeviceInfo(ev->dev))
               {
-                 DBG("Mouse button DOWN cb. insert event ev->window:%"PRIuPTR, ev->window);
+                 DBG("Mouse button DOWN cb. insert event ev->window:%zu", ev->window);
                  runner->ev.mouse.ecore_state = EINA_TRUE;
                  runner->insertEventQueue(ev->window, E_TC_EVENT_TYPE_INPUT_ECORE_MOUSE_DOWN);
               }
@@ -2660,7 +2660,7 @@ _cb_ecore_mouse_button_up(void *data, int type, void *event)
           {
              if (checkEcoreDeviceInfo(ev->dev))
                {
-                  DBG("Mouse button UP cb. insert event ev->window:%"PRIuPTR, ev->window);
+                  DBG("Mouse button UP cb. insert event ev->window:%zu", ev->window);
                   runner->ev.mouse.ecore_state = EINA_FALSE;
                   runner->insertEventQueue(ev->window, E_TC_EVENT_TYPE_INPUT_ECORE_MOUSE_UP);
                }
@@ -2686,7 +2686,7 @@ _cb_ecore_mouse_move(void *data, int type, void *event)
           {
              if (checkEcoreDeviceInfo(ev->dev))
                {
-                  DBG("Mouse MOVE cb. insert event ev->window:%"PRIuPTR, ev->window);
+                  DBG("Mouse MOVE cb. insert event ev->window:%zu", ev->window);
                   runner->insertEventQueue(ev->window, E_TC_EVENT_TYPE_INPUT_ECORE_MOUSE_MOVE);
                }
              else
@@ -2712,7 +2712,7 @@ _cb_ecore_mouse_relative_move(void *data, int type, void *event)
           {
              if (checkEcoreDeviceInfo(ev->dev))
                {
-                  DBG("Mouse Relative Move cb. insert event ev->window:%"PRIuPTR, ev->window);
+                  DBG("Mouse Relative Move cb. insert event ev->window:%zu", ev->window);
                   runner->insertEventQueue(ev->window, E_TC_EVENT_TYPE_INPUT_ECORE_MOUSE_RELATIVE_MOVE);
                }
              else