summaryrefslogtreecommitdiff
path: root/io/source/stm/opipe.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'io/source/stm/opipe.cxx')
-rw-r--r--io/source/stm/opipe.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/io/source/stm/opipe.cxx b/io/source/stm/opipe.cxx
index b6903e554f14..27c5ce002c01 100644
--- a/io/source/stm/opipe.cxx
+++ b/io/source/stm/opipe.cxx
@@ -148,7 +148,7 @@ OPipeImpl::~OPipeImpl()
sal_Int32 OPipeImpl::readBytes(Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead)
throw( NotConnectedException, BufferSizeExceededException,RuntimeException )
{
- while( sal_True )
+ while( true )
{
{ // start guarded section
MutexGuard guard( m_mutexAccess );
@@ -188,7 +188,7 @@ sal_Int32 OPipeImpl::readSomeBytes(Sequence< sal_Int8 >& aData, sal_Int32 nMaxBy
BufferSizeExceededException,
RuntimeException )
{
- while( sal_True ) {
+ while( true ) {
{
MutexGuard guard( m_mutexAccess );
if( m_bInputStreamClosed )