diff options
-rw-r--r-- | backends/fs/posix/posix-fs.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/fs/posix/posix-fs.cpp b/backends/fs/posix/posix-fs.cpp index 9d2416a9bc..c99505cc4d 100644 --- a/backends/fs/posix/posix-fs.cpp +++ b/backends/fs/posix/posix-fs.cpp @@ -263,9 +263,9 @@ AbstractFSNode *POSIXFilesystemNode::getParent() const { return 0; // The filesystem root has no parent #ifdef __OS2__ - if (_path.size() == 3 && _path.hasSuffix(":/")) - // This is a root directory of a drive - return makeNode("/"); // return a virtual root for a list of drives + if (_path.size() == 3 && _path.hasSuffix(":/")) + // This is a root directory of a drive + return makeNode("/"); // return a virtual root for a list of drives #endif #ifdef PSP2 if (_path.hasSuffix(":")) |