efl - build again - test suite break in using undefined ERR macro

This commit is contained in:
Carsten Haitzler 2020-06-10 19:30:14 +01:00
parent 09d89a059c
commit d7f9bc7499
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}