change type as int 69/305969/1
authordyamy-lee <dyamy.lee@samsung.com>
Tue, 13 Feb 2024 11:41:49 +0000 (20:41 +0900)
committerdyamy-lee <dyamy.lee@samsung.com>
Tue, 13 Feb 2024 11:47:28 +0000 (20:47 +0900)
The %p was expected to have pointer type but, 'info->address' type is int. So, this patch changed it to int.

Change-Id: Idb9ec45ddfbcb78bf5b8023738f6a8344075e21e

src/vc_elm_core.c

index d680763402d50e93e543ed730c7ab4f8c3e3fe82..95130463aef373c24b17a40f765761f3b91f4c28 100644 (file)
@@ -279,7 +279,7 @@ static Eina_Bool _vc_elm_click_matched_object(const char* cmd, int click_method)
                                                int y = info->geometry_info.y;
                                                int w = info->geometry_info.w;
                                                int h = info->geometry_info.h;
-                                               VC_ELM_LOG_DBG("Click event : %s x(%d) y(%d) w(%d) h(%d), address(%p) type(%s)", info->text, x, y, w, h, info->address, info->type);
+                                               VC_ELM_LOG_DBG("Click event : %s x(%d) y(%d) w(%d) h(%d), address(%d) type(%s)", info->text, x, y, w, h, info->address, info->type);
                                                if (0 == click_method) {
                                                        evas_event_feed_mouse_move(evas_object_evas_get((Evas_Object*)(info->address)), x + w/2, y + h/2, 0, NULL);
                                                        evas_event_feed_mouse_down(evas_object_evas_get((Evas_Object*)(info->address)), 1, EVAS_BUTTON_NONE, 1, NULL);
@@ -389,7 +389,7 @@ static Eina_Bool _vc_elm_click_matched_object_vt_auto(const char* cmd, int click
                                int y = info->geometry_info.y;
                                int w = info->geometry_info.w;
                                int h = info->geometry_info.h;
-                               VC_ELM_LOG_DBG("Click event : %s x(%d) y(%d) w(%d) h(%d), address(%p) type(%s)", info->text, x, y, w, h, info->address, info->type);
+                               VC_ELM_LOG_DBG("Click event : %s x(%d) y(%d) w(%d) h(%d), address(%d) type(%s)", info->text, x, y, w, h, info->address, info->type);
                                if (0 == click_method) {
                                        evas_event_feed_mouse_move(evas_object_evas_get((Evas_Object*)(info->address)), x + w/2, y + h/2, 0, NULL);
                                        evas_event_feed_mouse_down(evas_object_evas_get((Evas_Object*)(info->address)), 1, EVAS_BUTTON_NONE, 1, NULL);