diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-19 17:49:12 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-19 17:49:12 +0200 |
commit | af9684f604d05a622c17cbb425f02176a47d3858 (patch) | |
tree | 3131c0a91105461df42c1201bc674d987744dd46 /basic | |
parent | 1f0b89b5d2551f592f38e7bf090ce51bb938f243 (diff) |
loplugin:defaultparams
Change-Id: Ib0f01af2c7a7186d138369c177a563b322a87214
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/runtime/iosys.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/runtime/iosys.cxx b/basic/source/runtime/iosys.cxx index bfeb4d6c65d2..7958051d207e 100644 --- a/basic/source/runtime/iosys.cxx +++ b/basic/source/runtime/iosys.cxx @@ -676,7 +676,7 @@ SbError SbiStream::Read( char& ch ) nExpandOnWriteTo = 0; if (aLine.isEmpty()) { - Read( aLine, 0 ); + Read( aLine ); aLine = aLine + OString('\n'); } ch = aLine[0]; |