libroot_build: Use "=" instead of "+=" for clarity's sake.
No functional change.
This commit is contained in:
parent
86b6d54b46
commit
2e8023b371
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user