diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-10 09:59:07 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-10 21:12:55 +0100 |
commit | 3e40e67b09a9ab46bd4dc3a7df29135f6726b02e (patch) | |
tree | d36a6f81649751d9b7258acea8fa23544cf9a278 /odk/qa | |
parent | 34509a0805d408cd45c1b95f5afdafdc46c1501e (diff) |
coverity#1213270 Parse warning
Change-Id: I60d723e6baebcdb64daaa108a7e1a73554941940
Diffstat (limited to 'odk/qa')
-rw-r--r-- | odk/qa/checkapi/strings.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/odk/qa/checkapi/strings.cxx b/odk/qa/checkapi/strings.cxx index 87526acb673b..9cbf66755ddc 100644 --- a/odk/qa/checkapi/strings.cxx +++ b/odk/qa/checkapi/strings.cxx @@ -23,9 +23,9 @@ #include "allheaders.hxx" CPPUNIT_PLUGIN_IMPLEMENT(); -extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL firstfunc( sal_Bool bRes ) +extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL firstfunc(sal_Bool) { - return ( bRes = sal_True ); + return sal_True; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |