=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: winedump: Ensure function order in a printf (PVS-Studio).

Alexandre Julliard julliard at wine.codeweavers.com
Mon Oct 27 05:36:36 CDT 2014


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

Author: André Hentschel <nerv at dawncrow.de>
Date:   Sat Oct 25 17:55:11 2014 +0200

winedump: Ensure function order in a printf (PVS-Studio).

---

 tools/winedump/tlb.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/winedump/tlb.c b/tools/winedump/tlb.c
index 26da2a4..df1ea4b 100644
--- a/tools/winedump/tlb.c
+++ b/tools/winedump/tlb.c
@@ -647,7 +647,8 @@ static BOOL dump_msft_custdata(seg_t *seg)
             break;
         default:
             printf(": %x ", n);
-            printf("\\%2.2x \\%2.2x\n", tlb_read_byte(), tlb_read_byte());
+            printf("\\%2.2x ", tlb_read_byte());
+            printf("\\%2.2x\n", tlb_read_byte());
         }
     }
 




More information about the wine-cvs mailing list