[Libreoffice-commits] core.git: basic/source

Stephan Bergmann sbergman at redhat.com
Thu Jan 25 07:13:39 UTC 2018


 basic/source/runtime/dllmgr-x64.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7c7aa4e3077971627db09181405e3f388911c83d
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Thu Jan 25 08:13:11 2018 +0100

    loplugin:pointerbool (clang-cl)
    
    Change-Id: Idaf9e1858afb8f22bba1767470138ec820a8d7cb

diff --git a/basic/source/runtime/dllmgr-x64.cxx b/basic/source/runtime/dllmgr-x64.cxx
index 96aa4fcbdd78..10a05ef9463f 100644
--- a/basic/source/runtime/dllmgr-x64.cxx
+++ b/basic/source/runtime/dllmgr-x64.cxx
@@ -590,7 +590,7 @@ ErrCode call(
         //TODO
         break;
     case SbxBOOL:
-        result.PutBool(iRetVal);
+        result.PutBool(bool(iRetVal));
         break;
     case SbxBYTE:
         result.PutByte(static_cast< sal_uInt8 >(iRetVal));


More information about the Libreoffice-commits mailing list