diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-01-17 18:17:00 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-01-20 09:06:46 +0100 |
commit | 141b01ac65d5922aacdf6010043eadc7c28304a5 (patch) | |
tree | 8080be6ba72a3d127de8702511d049512d485f11 /connectivity/source/commontools | |
parent | 876413440d051f7bae8b3d222320f4bc3b617b79 (diff) |
Some more loplugin:cstylecast: connectivity
Change-Id: Iee1d11aef454284dbe050780c4308917c1a2b36f
Diffstat (limited to 'connectivity/source/commontools')
-rw-r--r-- | connectivity/source/commontools/CommonTools.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/commontools/CommonTools.cxx b/connectivity/source/commontools/CommonTools.cxx index 5aa7dc939bd7..fb3cf8a46af2 100644 --- a/connectivity/source/commontools/CommonTools.cxx +++ b/connectivity/source/commontools/CommonTools.cxx @@ -125,7 +125,7 @@ namespace connectivity Reference< XJavaVM > xVM = JavaVirtualMachine::create(_rxContext); Sequence<sal_Int8> processID(16); - rtl_getGlobalProcessId( (sal_uInt8*) processID.getArray() ); + rtl_getGlobalProcessId( reinterpret_cast<sal_uInt8*>(processID.getArray()) ); processID.realloc(17); processID[16] = 0; |