Code cleanup

This commit is contained in:
2020-04-15 10:06:57 +02:00
parent a298cfc47d
commit 032c699e8b
3 changed files with 9 additions and 8 deletions

View File

@ -1,11 +1,10 @@
#include <QtEndian>
#include <QDebug>
#include <QIODevice>
#include <zlib.h>
#include "gzip.h"
#define CHUNK 16384
QByteArray Gzip::uncompress(QIODevice *device, qint64 limit)
QByteArray Gzip::uncompress(QIODevice *device, int limit)
{
int ret;
z_stream strm;