From f1271b6454e45ea7081146438391a56b8fe8f527 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 19 Nov 2019 17:31:36 +0100 Subject: [PATCH] BPath: Removed superfluous term --- src/kits/storage/Path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/storage/Path.cpp b/src/kits/storage/Path.cpp index 3c47d4f5bf..194b70b7eb 100644 --- a/src/kits/storage/Path.cpp +++ b/src/kits/storage/Path.cpp @@ -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) {