Mercurial > hg > orthanc-stone
changeset 2271:d6f7b38015c2
fix
| author | Sebastien Jodogne <s.jodogne@gmail.com> |
|---|---|
| date | Tue, 14 Apr 2026 07:31:04 +0200 |
| parents | a03b5f5461c6 |
| children | f89bb5bf7d25 |
| files | OrthancStone/Sources/Platforms/Sdl/SdlOpenGLContext.cpp |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancStone/Sources/Platforms/Sdl/SdlOpenGLContext.cpp Mon Apr 13 21:27:43 2026 +0200 +++ b/OrthancStone/Sources/Platforms/Sdl/SdlOpenGLContext.cpp Tue Apr 14 07:31:04 2026 +0200 @@ -72,7 +72,7 @@ GLenum err = glewInit(); if (GLEW_OK != err) { - LOG(ERROR) << glewGetErrorString(err); + LOG(ERROR) << std::string(glewGetErrorString(err)); throw Orthanc::OrthancException(Orthanc::ErrorCode_InternalError, "Cannot initialize glew"); }
