regedit: Fix file exports in ASCII format.
This commit is contained in:
parent
907bb7ae1f
commit
700b5c6d7f
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue