diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2020-06-10 19:30:14 +0100 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2020-06-10 19:30:14 +0100 |
commit | d7f9bc7499dc6e627c542bb9d4b870c882f6ec03 (patch) | |
tree | c17338a626170273d49af02f903ffd2ce7a92a6d /src | |
parent | 09d89a059c723b5717798f100ddfb8708792c93a (diff) |
efl - build again - test suite break in using undefined ERR macro
Diffstat (limited to 'src')
-rw-r--r-- | src/tests/ecore_wl2/ecore_wl2_tests_helper_egl.h | 4 |
1 files 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) | |||
24 | 24 | ||
25 | if (!eglInitialize(td->egl_display, NULL, NULL)) | 25 | if (!eglInitialize(td->egl_display, NULL, NULL)) |
26 | { | 26 | { |
27 | ERR("Failed to initialize egl"); | 27 | EINA_LOG_ERR("Failed to initialize egl"); |
28 | eglTerminate(td->egl_display); | 28 | eglTerminate(td->egl_display); |
29 | return EINA_FALSE; | 29 | return EINA_FALSE; |
30 | } | 30 | } |
@@ -32,7 +32,7 @@ _init_egl(Test_Data *td) | |||
32 | if (!eglChooseConfig(td->egl_display, attributes, &td->egl_conf, | 32 | if (!eglChooseConfig(td->egl_display, attributes, &td->egl_conf, |
33 | 1, &num_config)) | 33 | 1, &num_config)) |
34 | { | 34 | { |
35 | ERR("Failed to choose egl config"); | 35 | EINA_LOG_ERR("Failed to choose egl config"); |
36 | eglTerminate(td->egl_display); | 36 | eglTerminate(td->egl_display); |
37 | return EINA_FALSE; | 37 | return EINA_FALSE; |
38 | } | 38 | } |