diff options
author | Shane Kearns <shane.kearns@accenture.com> | 2011-06-27 14:23:35 (GMT) |
---|---|---|
committer | Shane Kearns <shane.kearns@accenture.com> | 2011-06-27 14:44:25 (GMT) |
commit | 3b4a7777829a75d1587efbcaf297566d7c710d80 (patch) | |
tree | bf28ebdab435d1509f16bed682c8f01025d119f7 /src/corelib | |
parent | 4846920c4c42615ecca40b5d2daed276e1de3805 (diff) | |
download | Qt-3b4a7777829a75d1587efbcaf297566d7c710d80.zip Qt-3b4a7777829a75d1587efbcaf297566d7c710d80.tar.gz Qt-3b4a7777829a75d1587efbcaf297566d7c710d80.tar.bz2 |
Fix compiler warning
Reviewed-by: Trust Me
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/io/qfsfileengine_unix.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/corelib/io/qfsfileengine_unix.cpp b/src/corelib/io/qfsfileengine_unix.cpp index 681e55d..0e4b33a 100644 --- a/src/corelib/io/qfsfileengine_unix.cpp +++ b/src/corelib/io/qfsfileengine_unix.cpp @@ -925,6 +925,7 @@ QString QFSFileEngine::owner(FileOwner own) const return QFileSystemEngine::resolveUserName(ownerId(own)); return QFileSystemEngine::resolveGroupName(ownerId(own)); #else + Q_UNUSED(own) return QString(); #endif } |