BPath: Removed superfluous term

This commit is contained in:
Axel Dörfler
2019-11-19 17:35:19 +01:00
parent c8deb11d5d
commit f1271b6454
+1 -1
View File
@@ -178,7 +178,7 @@ BPath::SetTo(const char* path, const char* leaf, bool normalize)
}
// check, if necessary to normalize
if (error == B_OK && !normalize)
normalize = normalize || _MustNormalize(newPath, &error);
normalize = _MustNormalize(newPath, &error);
// normalize the path, if necessary, otherwise just set it
if (error == B_OK) {