mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
regedit: Fix qword entries export.
This commit is contained in:
parent
21727c416f
commit
0d3807dbc5
1 changed files with 1 additions and 1 deletions
|
@ -998,7 +998,7 @@ static void REGPROC_export_binary(WCHAR **line_buf, DWORD *line_buf_size, DWORD
|
|||
if (type == REG_BINARY) {
|
||||
hex_prefix = hex;
|
||||
} else {
|
||||
const WCHAR hex_format[] = {'h','e','x','(','%','u',')',':',0};
|
||||
const WCHAR hex_format[] = {'h','e','x','(','%','x',')',':',0};
|
||||
hex_prefix = hex_buf;
|
||||
sprintfW(hex_buf, hex_format, type);
|
||||
if ((type == REG_SZ || type == REG_EXPAND_SZ || type == REG_MULTI_SZ) && !unicode)
|
||||
|
|
Loading…
Reference in a new issue