From 2e8023b371189fa230a3a4e1c8deac3ffe8b86e9 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Mon, 6 Sep 2021 17:01:25 -0400 Subject: [PATCH] libroot_build: Use "=" instead of "+=" for clarity's sake. No functional change. --- src/build/libroot/fs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/libroot/fs.cpp b/src/build/libroot/fs.cpp index d6b140bda2..268954fc7b 100644 --- a/src/build/libroot/fs.cpp +++ b/src/build/libroot/fs.cpp @@ -266,7 +266,7 @@ normalize_dir_path(const char *path, string &normalizedPath) if (getcwd(pwd, sizeof(pwd)) == NULL) return B_ERROR; - normalizedPath += pwd; + normalizedPath = pwd; } const char *end = &path[pathLen];