summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Goetz <Markus.Goetz@nokia.com>2010-01-04 15:34:00 (GMT)
committerMarkus Goetz <Markus.Goetz@nokia.com>2010-01-04 15:40:36 (GMT)
commit2a988be53a60156cc5210b251e7a9904426c823c (patch)
tree5d9cfd179ac6737c09f5a0dbb3d84fdbcc0fd226
parentad227d0b009860c2b30eb40b5262519e2eb5055d (diff)
downloadQt-2a988be53a60156cc5210b251e7a9904426c823c.zip
Qt-2a988be53a60156cc5210b251e7a9904426c823c.tar.gz
Qt-2a988be53a60156cc5210b251e7a9904426c823c.tar.bz2
Fix typo in QFSFileEnginePrivate::canonicalized
Reviewed-by: TrustMe
-rw-r--r--src/corelib/io/qfsfileengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/io/qfsfileengine.cpp b/src/corelib/io/qfsfileengine.cpp
index e4c4e3f..c064d5a 100644
--- a/src/corelib/io/qfsfileengine.cpp
+++ b/src/corelib/io/qfsfileengine.cpp
@@ -144,7 +144,7 @@ QString QFSFileEnginePrivate::canonicalized(const QString &path)
return path;
#endif
// Mac OS X 10.5.x doesn't support the realpath(X,0) extenstion we use here.
-#if defined(Q_OS_LINIX) || defined(Q_OS_SYMBIAN)
+#if defined(Q_OS_LINUX) || defined(Q_OS_SYMBIAN)
char *ret = realpath(path.toLocal8Bit().constData(), (char*)0);
if (ret) {
QString canonicalPath = QDir::cleanPath(QString::fromLocal8Bit(ret));