diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-10-28 14:49:12 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-10-28 16:41:16 +0100 |
commit | bf180165b07d6592f23b0bdda8e66fff4fa57eab (patch) | |
tree | 6734e50e7f80e3f5152b4c31e45baebf6686e7bd /vcl/source/opengl/OpenGLHelper.cxx | |
parent | 586c00f7ba59b0c75ed2dd8ecf241a4d81c82331 (diff) |
Blind fix for Android build ('unsigned int' vs. 'unsigned long')
Change-Id: I04de54231abb8b34c93cbcb96c21cae78d90bfd4
Reviewed-on: https://gerrit.libreoffice.org/81608
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl/source/opengl/OpenGLHelper.cxx')
-rw-r--r-- | vcl/source/opengl/OpenGLHelper.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/vcl/source/opengl/OpenGLHelper.cxx b/vcl/source/opengl/OpenGLHelper.cxx index c02f142bef26..730b8922dccf 100644 --- a/vcl/source/opengl/OpenGLHelper.cxx +++ b/vcl/source/opengl/OpenGLHelper.cxx @@ -1035,12 +1035,14 @@ bool OpenGLWrapper::isVCLOpenGLEnabled() void OpenGLHelper::debugMsgStream(std::ostringstream const &pStream) { - debugMsgPrint(0, "%x: %s", osl_getThreadIdentifier(nullptr), pStream.str().c_str()); + debugMsgPrint( + 0, "%" SAL_PRIxUINT32 ": %s", osl_getThreadIdentifier(nullptr), pStream.str().c_str()); } void OpenGLHelper::debugMsgStreamWarn(std::ostringstream const &pStream) { - debugMsgPrint(1, "%x: %s", osl_getThreadIdentifier(nullptr), pStream.str().c_str()); + debugMsgPrint( + 1, "%" SAL_PRIxUINT32 ": %s", osl_getThreadIdentifier(nullptr), pStream.str().c_str()); } void OpenGLHelper::debugMsgPrint(const int nType, const char *pFormat, ...) |