diff options
Diffstat (limited to 'cosv')
-rw-r--r-- | cosv/source/strings/streamstr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cosv/source/strings/streamstr.cxx b/cosv/source/strings/streamstr.cxx index 86c5aa64146e..0c28b7f5aa22 100644 --- a/cosv/source/strings/streamstr.cxx +++ b/cosv/source/strings/streamstr.cxx @@ -555,7 +555,7 @@ StreamStr::operator_read_line( bstream & i_src ) char oldc = c; if (i_src.read(&c, 1) == 1) { - if (c != 13 AND c != 10 OR c == oldc) + if ( (c != 13 AND c != 10) OR c == oldc) i_src.seek(-1,::csv::cur); } } |