From a8f206d9e888c5339bd5f98961c1a460dab5504d Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 29 Sep 2016 18:44:46 +0200 Subject: loplugin:literaltoboolconversion Change-Id: I99859433f3e3541c8e44248e4a29ef2c5fb24845 --- linguistic/source/dicimp.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'linguistic/source/dicimp.cxx') diff --git a/linguistic/source/dicimp.cxx b/linguistic/source/dicimp.cxx index b588be1fb569..3e7ff05ab18e 100644 --- a/linguistic/source/dicimp.cxx +++ b/linguistic/source/dicimp.cxx @@ -387,7 +387,7 @@ sal_uLong DictionaryNeo::saveEntries(const OUString &rURL) } catch (const uno::Exception &) { - DBG_ASSERT( 0, "failed to get input stream" ); + DBG_ASSERT( false, "failed to get input stream" ); } if (!xStream.is()) return static_cast< sal_uLong >(-1); @@ -445,7 +445,7 @@ sal_uLong DictionaryNeo::saveEntries(const OUString &rURL) } catch (const uno::Exception &) { - DBG_ASSERT( 0, "failed to write stream" ); + DBG_ASSERT( false, "failed to write stream" ); return static_cast< sal_uLong >(-1); } -- cgit