diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-06-16 17:11:38 +0100 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-06-16 19:34:21 +0200 |
commit | f1a1f1e9aaeefacc49c14551e235a711387ab5dc (patch) | |
tree | f178245ae95a2b3c172611c1a4c126cc48860256 | |
parent | c003f792183b63ca3f282a6fd53ceae0167f2a5e (diff) |
cid#1603803 Unchecked return value
Change-Id: Id7f4d7a27720856c5e53dab4333a8ecf370004dd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168959
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
-rw-r--r-- | sc/source/ui/docshell/impex.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/docshell/impex.cxx b/sc/source/ui/docshell/impex.cxx index 9957e97bfbd0..42b281e2aadf 100644 --- a/sc/source/ui/docshell/impex.cxx +++ b/sc/source/ui/docshell/impex.cxx @@ -2066,7 +2066,7 @@ bool ScImportExport::Sylk2Doc( SvStream& rStrm ) for( ;; ) { //! allow unicode - rStrm.ReadLine( aByteLine ); + (void)rStrm.ReadLine( aByteLine ); aLine = OStringToOUString(aByteLine, rStrm.GetStreamCharSet()); if( rStrm.eof() ) break; |