summaryrefslogtreecommitdiffstats
path: root/src/corelib/text/qbytearray.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/text/qbytearray.cpp')
-rw-r--r--src/corelib/text/qbytearray.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/text/qbytearray.cpp b/src/corelib/text/qbytearray.cpp
index ee559c6d75..375c64a90c 100644
--- a/src/corelib/text/qbytearray.cpp
+++ b/src/corelib/text/qbytearray.cpp
@@ -676,7 +676,7 @@ QByteArray qUncompress(const uchar* data, int nbytes)
switch (res) {
case Z_OK: {
Q_ASSERT(len <= alloc);
- Q_UNUSED(alloc)
+ Q_UNUSED(alloc);
d.data()[len] = '\0';
d.size = len;
return QByteArray(d);