diff options
Diffstat (limited to 'lib/System/Unix')
-rw-r--r-- | lib/System/Unix/Path.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/Unix/Path.inc b/lib/System/Unix/Path.inc index 79786358ac..400318b0eb 100644 --- a/lib/System/Unix/Path.inc +++ b/lib/System/Unix/Path.inc @@ -509,7 +509,7 @@ Path::eraseSuffix() { if (dotpos != std::string::npos) { if (slashpos == std::string::npos || dotpos > slashpos) { path.erase(dotpos, path.size()-dotpos); - return true; + return true; } } return false; |