summaryrefslogtreecommitdiffstats
path: root/basic
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-01-25 08:13:11 +0100
committerStephan Bergmann <sbergman@redhat.com>2018-01-25 08:13:11 +0100
commit7c7aa4e3077971627db09181405e3f388911c83d (patch)
treeb9d0511c7b73631d68492db3152b7718e9a96412 /basic
parentUSHRT_MAX -> SAL_MAX_UINT16 (diff)
downloadcore-7c7aa4e3077971627db09181405e3f388911c83d.tar.gz
core-7c7aa4e3077971627db09181405e3f388911c83d.zip
loplugin:pointerbool (clang-cl)
Change-Id: Idaf9e1858afb8f22bba1767470138ec820a8d7cb
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/dllmgr-x64.cxx2
1 files changed, 1 insertions, 1 deletions
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));