summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-10-30 13:26:30 +0100
committerMichael Stahl <mstahl@redhat.com>2015-10-30 16:09:36 +0100
commitf76c3a1fb5ebc6684be6da3f32b80bd750688f81 (patch)
treeea7e7df2cf038e8bb7715096b0ba52de05fde013 /sal
parentd5d1815451adab8648c846b563e1b4962894e919 (diff)
sal: loplugin:salbool
Change-Id: I8fa83df0bf5f6064dcdd3f830769d7626152c7ab
Diffstat (limited to 'sal')
-rw-r--r--sal/osl/unx/profile.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sal/osl/unx/profile.cxx b/sal/osl/unx/profile.cxx
index 7ea5afb62cc6..38ccda3c67c6 100644
--- a/sal/osl/unx/profile.cxx
+++ b/sal/osl/unx/profile.cxx
@@ -721,7 +721,7 @@ sal_uInt32 SAL_CALL osl_getProfileSectionEntries(oslProfile Profile,
if ( pTmpProfile == 0 )
{
- return sal_False;
+ return 0;
}
@@ -733,7 +733,7 @@ sal_uInt32 SAL_CALL osl_getProfileSectionEntries(oslProfile Profile,
pthread_mutex_unlock(&(pTmpProfile->m_AccessLock));
- return sal_False;
+ return 0;
}
pProfile = acquireProfile(Profile, false);
@@ -805,7 +805,7 @@ sal_uInt32 SAL_CALL osl_getProfileSections(oslProfile Profile,
if ( pTmpProfile == 0 )
{
- return sal_False;
+ return 0;
}
pthread_mutex_lock(&(pTmpProfile->m_AccessLock));
@@ -815,7 +815,7 @@ sal_uInt32 SAL_CALL osl_getProfileSections(oslProfile Profile,
SAL_WARN_IF(!pTmpProfile->m_bIsValid, "sal.osl", "!pTmpProfile->m_bIsValid");
pthread_mutex_unlock(&(pTmpProfile->m_AccessLock));
- return sal_False;
+ return 0;
}
pProfile = acquireProfile(Profile, false);