Commit 495d9b5f authored by Alexandre Julliard's avatar Alexandre Julliard

reg: Avoid non-portable Unicode character.

parent 07fdd503
...@@ -301,7 +301,7 @@ static int export_registry_data(HANDLE hFile, HKEY key, WCHAR *path) ...@@ -301,7 +301,7 @@ static int export_registry_data(HANDLE hFile, HKEY key, WCHAR *path)
static void export_file_header(HANDLE hFile) static void export_file_header(HANDLE hFile)
{ {
static const WCHAR *header = L"\uFEFFWindows Registry Editor Version 5.00\r\n"; static const WCHAR header[] = L"\xFEFFWindows Registry Editor Version 5.00\r\n";
write_file(hFile, header); write_file(hFile, header);
} }
......
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