summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_misc.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/pkgchk/unopkg/unopkg_misc.cxx b/desktop/source/pkgchk/unopkg/unopkg_misc.cxx
index 199355ea7269..68b3321cb90e 100644
--- a/desktop/source/pkgchk/unopkg/unopkg_misc.cxx
+++ b/desktop/source/pkgchk/unopkg/unopkg_misc.cxx
@@ -49,7 +49,7 @@ namespace unopkg {
OUString toString( OptionInfo const * info )
{
- OSL_ASSERT( info != 0 );
+ assert(info != 0);
OUStringBuffer buf;
buf.appendAscii("--");
buf.appendAscii(info->m_name);
@@ -98,7 +98,7 @@ OptionInfo const * getOptionInfo(
bool isOption( OptionInfo const * option_info, sal_uInt32 * pIndex )
{
- OSL_ASSERT( option_info != 0 );
+ assert(option_info != 0);
if (osl_getCommandArgCount() <= *pIndex)
return false;