summaryrefslogtreecommitdiff
path: root/store/source/storlckb.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'store/source/storlckb.cxx')
-rw-r--r--store/source/storlckb.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/store/source/storlckb.cxx b/store/source/storlckb.cxx
index 986e049619c9..0db186b94df2 100644
--- a/store/source/storlckb.cxx
+++ b/store/source/storlckb.cxx
@@ -152,7 +152,7 @@ storeError OStoreLockBytes::readAt (
// Read data.
OStoreDataPageObject aData;
- sal_uInt8 *pData = (sal_uInt8*)pBuffer;
+ sal_uInt8 *pData = static_cast<sal_uInt8*>(pBuffer);
while ((0 < nBytes) && (nOffset < nDataLen))
{
// Determine 'Offset' scope.
@@ -247,7 +247,7 @@ storeError OStoreLockBytes::writeAt (
// Write data.
OStoreDirectoryPageObject aPage (m_xNode.get());
- const sal_uInt8 *pData = (const sal_uInt8*)pBuffer;
+ const sal_uInt8 *pData = static_cast<const sal_uInt8*>(pBuffer);
storeError eErrCode = store_E_None;
while (nBytes > 0)