Commit 700b5c6d authored by Alexandre Julliard's avatar Alexandre Julliard

regedit: Fix file exports in ASCII format.

parent 907bb7ae
......@@ -940,7 +940,7 @@ static void REGPROC_write_line(FILE *file, const WCHAR* str, BOOL unicode)
} else
{
char* strA = GetMultiByteString(str);
fprintf(file, strA);
fputs(strA, file);
HeapFree(GetProcessHeap(), 0, strA);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment