From d7f9bc7499dc6e627c542bb9d4b870c882f6ec03 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Wed, 10 Jun 2020 19:30:14 +0100 Subject: [PATCH] efl - build again - test suite break in using undefined ERR macro --- src/tests/ecore_wl2/ecore_wl2_tests_helper_egl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/ecore_wl2/ecore_wl2_tests_helper_egl.h b/src/tests/ecore_wl2/ecore_wl2_tests_helper_egl.h index 4446bc547f..10605428be 100644 --- a/src/tests/ecore_wl2/ecore_wl2_tests_helper_egl.h +++ b/src/tests/ecore_wl2/ecore_wl2_tests_helper_egl.h @@ -24,7 +24,7 @@ _init_egl(Test_Data *td) if (!eglInitialize(td->egl_display, NULL, NULL)) { - ERR("Failed to initialize egl"); + EINA_LOG_ERR("Failed to initialize egl"); eglTerminate(td->egl_display); return EINA_FALSE; } @@ -32,7 +32,7 @@ _init_egl(Test_Data *td) if (!eglChooseConfig(td->egl_display, attributes, &td->egl_conf, 1, &num_config)) { - ERR("Failed to choose egl config"); + EINA_LOG_ERR("Failed to choose egl config"); eglTerminate(td->egl_display); return EINA_FALSE; }