Michael Stefaniuc : winedos: Fix printf format warnings introduced by the TEB change in thread.h.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Jun 6 07:41:53 CDT 2007


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

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Tue Jun  5 16:02:50 2007 +0200

winedos: Fix printf format warnings introduced by the TEB change in thread.h.

---

 dlls/winedos/int31.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/winedos/int31.c b/dlls/winedos/int31.c
index 4bf16a9..5fa46c6 100644
--- a/dlls/winedos/int31.c
+++ b/dlls/winedos/int31.c
@@ -1347,21 +1347,21 @@ void WINAPI DOSVM_Int31Handler( CONTEXT86 *context )
         break;
 
     case 0x0900:  /* Get and Disable Virtual Interrupt State */
-        TRACE( "Get and Disable Virtual Interrupt State: %ld\n", 
+        TRACE( "Get and Disable Virtual Interrupt State: %d\n",
                NtCurrentTeb()->dpmi_vif );
         SET_AL( context, NtCurrentTeb()->dpmi_vif ? 1 : 0 );
         NtCurrentTeb()->dpmi_vif = 0;
         break;
 
     case 0x0901:  /* Get and Enable Virtual Interrupt State */
-        TRACE( "Get and Enable Virtual Interrupt State: %ld\n", 
+        TRACE( "Get and Enable Virtual Interrupt State: %d\n",
                NtCurrentTeb()->dpmi_vif );
         SET_AL( context, NtCurrentTeb()->dpmi_vif ? 1 : 0 );
         NtCurrentTeb()->dpmi_vif = 1;
         break;
 
     case 0x0902:  /* Get Virtual Interrupt State */
-        TRACE( "Get Virtual Interrupt State: %ld\n", 
+        TRACE( "Get Virtual Interrupt State: %d\n",
                NtCurrentTeb()->dpmi_vif );
         SET_AL( context, NtCurrentTeb()->dpmi_vif ? 1 : 0 );
         break;




More information about the wine-cvs mailing list