diff options
Diffstat (limited to 'xbmc/utils')
-rw-r--r-- | xbmc/utils/EGLUtils.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xbmc/utils/EGLUtils.cpp b/xbmc/utils/EGLUtils.cpp index 7c5e709..85f889d 100644 --- a/xbmc/utils/EGLUtils.cpp +++ b/xbmc/utils/EGLUtils.cpp @@ -115,7 +115,8 @@ void EglErrorCallback(EGLenum error, typeStr = eglType->second; } - CLog::Log(LOGDEBUG, "EGL Debugging:\nError: {}\nCommand: {}\nType: {}\nMessage: {}", errorStr, command, typeStr, message); + CLog::Log(LOGDEBUG, "EGL Debugging:\nError: {}\nCommand: {}\nType: {}\nMessage: {}", errorStr, + command, typeStr, message ? message : ""); } std::set<std::string> CEGLUtils::GetClientExtensions() |