e_test_event: Fix 64bit build error 40/323740/1
authorJunseok Kim <juns.kim@samsung.com>
Wed, 7 May 2025 04:08:05 +0000 (13:08 +0900)
committerJunseok Kim <juns.kim@samsung.com>
Wed, 7 May 2025 04:08:05 +0000 (13:08 +0900)
Change-Id: I3a24b43da2c5461d9f0fe8a86eaca9b4a183a173

src/e_test_event.cpp

index 4d03f4e4d7cdec353f6416fa47e4e08d4f6e7d7b..ca5bb0ef8c555b6e4e5c31e346417dd6cfdc0cbf 100644 (file)
@@ -2623,7 +2623,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:%d", ev->window);
+                 DBG("Mouse button DOWN cb. insert event ev->window:%"PRIuPTR, ev->window);
                  runner->ev.mouse.ecore_state = EINA_TRUE;
                  runner->insertEventQueue(ev->window, E_TC_EVENT_TYPE_INPUT_ECORE_MOUSE_DOWN);
               }
@@ -2654,7 +2654,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:%d", ev->window);
+                  DBG("Mouse button UP cb. insert event ev->window:%"PRIuPTR, ev->window);
                   runner->ev.mouse.ecore_state = EINA_FALSE;
                   runner->insertEventQueue(ev->window, E_TC_EVENT_TYPE_INPUT_ECORE_MOUSE_UP);
                }
@@ -2680,7 +2680,7 @@ _cb_ecore_mouse_move(void *data, int type, void *event)
           {
              if (checkEcoreDeviceInfo(ev->dev))
                {
-                  DBG("Mouse MOVE cb. insert event ev->window:%d", ev->window);
+                  DBG("Mouse MOVE cb. insert event ev->window:%"PRIuPTR, ev->window);
                   runner->insertEventQueue(ev->window, E_TC_EVENT_TYPE_INPUT_ECORE_MOUSE_MOVE);
                }
              else
@@ -2706,7 +2706,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:%d", ev->window);
+                  DBG("Mouse Relative Move cb. insert event ev->window:%"PRIuPTR, ev->window);
                   runner->insertEventQueue(ev->window, E_TC_EVENT_TYPE_INPUT_ECORE_MOUSE_RELATIVE_MOVE);
                }
              else