regedit: Fix qword entries export.
This commit is contained in:
parent
21727c416f
commit
0d3807dbc5
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue