Fix some pedantic compiler warnings.

This commit is contained in:
Felix Geyer 2012-04-26 11:59:53 +02:00
parent e4bc302d3d
commit 7865f5eee9
2 changed files with 9 additions and 10 deletions

View file

@ -553,7 +553,6 @@ qint64 QtIOCompressor::readData(char *data, qint64 maxSize)
return -1;
case Z_BUF_ERROR: // No more input and zlib can not privide more output - Not an error, we can try to read again when we have more input.
return 0;
break;
}
// Loop util data buffer is full or we reach the end of the input stream.
} while (d->zlibStream.avail_out != 0 && status != Z_STREAM_END);