Removed useless conversion.

This commit is contained in:
Guillaume Melquiond 2009-03-04 12:24:56 +00:00
parent d4d6d75a28
commit f4da28d4b6

View File

@ -1125,7 +1125,7 @@ std::string normalize_path(const std::string &p1)
else
#endif
if (!is_path_sep(p1[0]))
p2 = std::string(get_cwd()) + "/" + p1;
p2 = get_cwd() + "/" + p1;
else
p2 = p1;