diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 19:59:38 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:20 +0100 |
commit | c622bc0696f0e2ad8880dc6a3783d4a13e222977 (patch) | |
tree | 613f779f95615e23efdaa73db357230dbc419b04 /unotest/source | |
parent | eb75ea239b83035b19c6057f5a3de422e8097539 (diff) |
bool improvements
Change-Id: Ic113564f9d30e59b0292d97318f15e9b04813ce3
Diffstat (limited to 'unotest/source')
-rw-r--r-- | unotest/source/cpp/filters-test.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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) |