Bruno Jesus : regedit: Fix qword entries export.

Alexandre Julliard julliard at winehq.org
Thu May 17 13:45:59 CDT 2012


Module: wine
Branch: master
Commit: 0d3807dbc50b60bfbcb259e58bc0fdba1f6e8394
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=0d3807dbc50b60bfbcb259e58bc0fdba1f6e8394

Author: Bruno Jesus <00cpxxx at gmail.com>
Date:   Wed May 16 21:39:19 2012 -0300

regedit: Fix qword entries export.

---

 programs/regedit/regproc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/programs/regedit/regproc.c b/programs/regedit/regproc.c
index 7065bfd..18b6e98 100644
--- a/programs/regedit/regproc.c
+++ b/programs/regedit/regproc.c
@@ -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)




More information about the wine-cvs mailing list