diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2011-03-21 14:32:05 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2011-03-22 14:41:10 (GMT) |
commit | ec21b536dfcc439b255e8f4ba342df723ff4ca63 (patch) | |
tree | 4ee513a9eb1cde9f713139bf97a2f4745dc94f30 /src/corelib | |
parent | b56f6ba0662a636e71301ef6dd56c0f8b3737d5b (diff) | |
download | Qt-ec21b536dfcc439b255e8f4ba342df723ff4ca63.zip Qt-ec21b536dfcc439b255e8f4ba342df723ff4ca63.tar.gz Qt-ec21b536dfcc439b255e8f4ba342df723ff4ca63.tar.bz2 |
Fix warning about "data" being unused.
Reviewed-by: Trust Me
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/io/qfilesystemengine_unix.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/corelib/io/qfilesystemengine_unix.cpp b/src/corelib/io/qfilesystemengine_unix.cpp index 1becea5..c9ebaa4 100644 --- a/src/corelib/io/qfilesystemengine_unix.cpp +++ b/src/corelib/io/qfilesystemengine_unix.cpp @@ -176,6 +176,7 @@ QFileSystemEntry QFileSystemEngine::canonicalName(const QFileSystemEntry &entry, #if !defined(Q_OS_MAC) && _POSIX_VERSION < 200809L // realpath(X,0) is not supported + Q_UNUSED(data); return QFileSystemEntry(slowCanonicalized(absoluteName(entry).filePath())); #else char *ret = 0; |