From c622bc0696f0e2ad8880dc6a3783d4a13e222977 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 28 Jan 2014 19:59:38 +0100 Subject: bool improvements Change-Id: Ic113564f9d30e59b0292d97318f15e9b04813ce3 --- unotest/source/cpp/filters-test.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unotest') diff --git a/unotest/source/cpp/filters-test.cxx b/unotest/source/cpp/filters-test.cxx index 2b07ff8c3b4b..15e14a719f98 100644 --- a/unotest/source/cpp/filters-test.cxx +++ b/unotest/source/cpp/filters-test.cxx @@ -37,7 +37,7 @@ void decode(const OUString& rIn, const OUString &rOut) sal_uInt8 in[8192]; sal_uInt8 out[8192]; sal_uInt64 nBytesRead, nBytesWritten; - while(1) + while(true) { CPPUNIT_ASSERT(osl::FileBase::E_None == aIn.read(in, sizeof(in), nBytesRead)); if (!nBytesRead) -- cgit