diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-01-17 19:01:27 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-01-20 09:06:50 +0100 |
commit | b70b4e644b5bb5356509505855418453dc621cfc (patch) | |
tree | 0a2441aa91947032d398b688f73553ff4d5a4afb /include/osl | |
parent | 2e160b1e0e5b28b8a6ddfa07fc6ffff1c6e590bc (diff) |
Some more loplugin:cstylecast: sal
Change-Id: Ie54d340478412e62b87d66e287fd8a3963e97898
Diffstat (limited to 'include/osl')
-rw-r--r-- | include/osl/socket.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osl/socket.hxx b/include/osl/socket.hxx index b8557efc0e69..4d41bed3c20c 100644 --- a/include/osl/socket.hxx +++ b/include/osl/socket.hxx @@ -112,7 +112,7 @@ namespace osl inline ::rtl::ByteSequence SAL_CALL SocketAddr::getAddr( oslSocketResult *pResult ) const { ::rtl::ByteSequence sequence; - oslSocketResult result = osl_getAddrOfSocketAddr( m_handle,(sal_Sequence **) &sequence ); + oslSocketResult result = osl_getAddrOfSocketAddr( m_handle, reinterpret_cast<sal_Sequence **>(&sequence) ); if( pResult ) *pResult = result; return sequence; |