summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_radio_private.h
diff options
context:
space:
mode:
authorShinwoo Kim <cinoo.kim@samsung.com>2018-02-01 12:16:28 +0900
committerShinwoo Kim <cinoo.kim@samsung.com>2018-02-01 12:16:28 +0900
commit9f2e1d050f054c386e691439a8e640d78693e67e (patch)
tree456f5ec638b32c155897bff11d8bc8cc61fa2d92 /src/lib/elementary/efl_ui_radio_private.h
parent4a6d32b35264a7d8d549367279e9c77f0de652da (diff)
downloadefl-9f2e1d050f054c386e691439a8e640d78693e67e.tar.gz
elm: Use ERR instead of CRI if *DATA_GET* returns NULL
Diffstat (limited to 'src/lib/elementary/efl_ui_radio_private.h')
-rw-r--r--src/lib/elementary/efl_ui_radio_private.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/elementary/efl_ui_radio_private.h b/src/lib/elementary/efl_ui_radio_private.h
index 0cce85f8ab..8e41183690 100644
--- a/src/lib/elementary/efl_ui_radio_private.h
+++ b/src/lib/elementary/efl_ui_radio_private.h
@@ -52,7 +52,7 @@ struct _Efl_Ui_Radio_Data
ELM_RADIO_DATA_GET(o, ptr); \
if (EINA_UNLIKELY(!ptr)) \
{ \
- CRI("No widget data for object %p (%s)", \
+ ERR("No widget data for object %p (%s)", \
o, evas_object_type_get(o)); \
return; \
}
@@ -61,7 +61,7 @@ struct _Efl_Ui_Radio_Data
ELM_RADIO_DATA_GET(o, ptr); \
if (EINA_UNLIKELY(!ptr)) \
{ \
- CRI("No widget data for object %p (%s)", \
+ ERR("No widget data for object %p (%s)", \
o, evas_object_type_get(o)); \
return val; \
}