summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
authorShane Kearns <shane.kearns@accenture.com>2011-06-27 14:23:35 (GMT)
committerShane Kearns <shane.kearns@accenture.com>2011-06-27 14:44:25 (GMT)
commit3b4a7777829a75d1587efbcaf297566d7c710d80 (patch)
treebf28ebdab435d1509f16bed682c8f01025d119f7 /src/corelib
parent4846920c4c42615ecca40b5d2daed276e1de3805 (diff)
downloadQt-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.cpp1
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
}