Utils: Fix unused parameter warning

Change-Id: Ibe4c866b4f3bf39999cfe43bd32287e069e51d2c
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
This commit is contained in:
Björn Schäpers
2023-05-10 13:33:27 +02:00
committed by Jarek Kobus
parent fb406a26f4
commit b8a82d824b

View File

@@ -493,6 +493,8 @@ bool DesktopDeviceFileAccess::hasHardLinks(const FilePath &filePath) const
if (s.st_nlink > 1) if (s.st_nlink > 1)
return true; return true;
} }
#else
Q_UNUSED(filePath)
#endif #endif
return false; return false;
} }