summaryrefslogtreecommitdiff
path: root/store/source/store.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'store/source/store.cxx')
-rw-r--r--store/source/store.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/store/source/store.cxx b/store/source/store.cxx
index 7c06aee6f91e..664c4938a513 100644
--- a/store/source/store.cxx
+++ b/store/source/store.cxx
@@ -113,7 +113,7 @@ storeError SAL_CALL store_createMemoryFile (
storeError eErrCode = MemoryLockBytes_createInstance(xLockBytes);
if (eErrCode != store_E_None)
return eErrCode;
- OSL_ASSERT(xLockBytes.is());
+ assert(xLockBytes.is());
Reference<OStorePageManager> xManager (new OStorePageManager());
if (!xManager.is())
@@ -151,7 +151,7 @@ storeError SAL_CALL store_openFile (
storeError eErrCode = FileLockBytes_createInstance (xLockBytes, pFilename, eAccessMode);
if (eErrCode != store_E_None)
return eErrCode;
- OSL_ASSERT(xLockBytes.is());
+ assert(xLockBytes.is());
Reference<OStorePageManager> xManager (new OStorePageManager());
if (!xManager.is())