Fix bug in converting directory separators for MinGW.

This commit is contained in:
Martin Whitaker 2019-10-23 13:05:48 +01:00
parent 160bfbf2fc
commit f0326bc9c2
1 changed files with 1 additions and 1 deletions

View File

@ -946,7 +946,7 @@ static void add_vpi_file(const char *name)
#ifdef __MINGW32__
char*tmp_name = strdup(name);
convert_to_MS_path(name);
convert_to_MS_path(tmp_name);
name = tmp_name;
#endif