2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 12:42:11 +00:00

Make it work, for extra benefit ('=' vs '==' bug)

[SVN r39830]
This commit is contained in:
Vladimir Prus
2007-10-09 05:38:31 +00:00
parent 06f65d9fc9
commit e1ffef9677

View File

@@ -1339,8 +1339,8 @@ LIST *builtin_normalize_path( PARSE *parse, FRAME *frame )
and we want this function to obtain canonic representation. */
for (current = in->value, end = in->value + in->size;
current < end; ++current)
if (*current = '\\')
* current = '/';
if (*current == '\\')
*current = '/';
end = in->value + in->size - 1;