From c7a32e63cc62521fdc443ef7c6d82f9a6637821e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Sat, 31 Jan 2015 15:06:44 -0800 Subject: [PATCH] Cleanup. --- src/glcontext_egl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/glcontext_egl.cpp b/src/glcontext_egl.cpp index 9133581fa..77abfa96a 100644 --- a/src/glcontext_egl.cpp +++ b/src/glcontext_egl.cpp @@ -64,7 +64,7 @@ EGL_IMPORT void* eglOpen() { void* handle = bx::dlopen("libEGL." BX_DL_EXT); - BGFX_FATAL(NULL != handle, Fatal::UnableToInitialize, "Failed to load libEGL dynamic library. %s", dlerror()); + BGFX_FATAL(NULL != handle, Fatal::UnableToInitialize, "Failed to load libEGL dynamic library."); #define EGL_IMPORT_FUNC(_proto, _func) \ _func = (_proto)bx::dlsym(handle, #_func); \