Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Dec 26, 2024
1 parent 0de21d1 commit 7b80233
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/dict/utils/indexedzip.cc
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ bool IndexedZip::loadFile( uint32_t offset, vector< char > & data )

int ret = inflate( &stream, Z_FINISH );
if ( ret != Z_STREAM_END ) {
qDebug() << "Not zstream end! Stream total_in:" << stream.total_in << "total_out:" << stream.total_out << "msg:" << (stream.msg ? stream.msg : "none");
qDebug() << "Not zstream end! Stream total_in:" << stream.total_in << "total_out:" << stream.total_out
<< "msg:" << ( stream.msg ? stream.msg : "none" );

data.clear();

Expand Down

0 comments on commit 7b80233

Please sign in to comment.