Commit 0d3807db authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

regedit: Fix qword entries export.

parent 21727c41
...@@ -998,7 +998,7 @@ static void REGPROC_export_binary(WCHAR **line_buf, DWORD *line_buf_size, DWORD ...@@ -998,7 +998,7 @@ static void REGPROC_export_binary(WCHAR **line_buf, DWORD *line_buf_size, DWORD
if (type == REG_BINARY) { if (type == REG_BINARY) {
hex_prefix = hex; hex_prefix = hex;
} else { } else {
const WCHAR hex_format[] = {'h','e','x','(','%','u',')',':',0}; const WCHAR hex_format[] = {'h','e','x','(','%','x',')',':',0};
hex_prefix = hex_buf; hex_prefix = hex_buf;
sprintfW(hex_buf, hex_format, type); sprintfW(hex_buf, hex_format, type);
if ((type == REG_SZ || type == REG_EXPAND_SZ || type == REG_MULTI_SZ) && !unicode) if ((type == REG_SZ || type == REG_EXPAND_SZ || type == REG_MULTI_SZ) && !unicode)
......
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