From 7306c86241cee0678f5b2de089e0773de4a55b1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Thu, 21 Apr 2016 22:50:19 +0100 Subject: [PATCH] Silence a warning about unused variable. --- src/fs/ntfs.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fs/ntfs.cpp b/src/fs/ntfs.cpp index 7665017..80f512a 100644 --- a/src/fs/ntfs.cpp +++ b/src/fs/ntfs.cpp @@ -175,6 +175,7 @@ bool ntfs::resize(Report& report, const QString& deviceNode, qint64 length) cons bool ntfs::updateUUID(Report& report, const QString& deviceNode) const { + Q_UNUSED(report); QUuid uuid = QUuid::createUuid(); char* s = reinterpret_cast(&uuid.data4[0]);