diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/stream/stream.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx index afaa9174ee13..34dc93d66bd7 100644 --- a/tools/source/stream/stream.cxx +++ b/tools/source/stream/stream.cxx @@ -717,8 +717,7 @@ sal_Bool SvStream::ReadLine( ByteString& rStr ) sal_Bool SvStream::ReadLine( rtl::OString& rStr ) { ByteString aFoo; - sal_Bool ret; - ret = ReadLine(aFoo); + sal_Bool ret = ReadLine(aFoo); rStr = aFoo; return ret; } |