PATCH: dlls/winedos/int10.c -- fix trace

Gerald Pfeifer pfeifer at dbai.tuwien.ac.at
Sat Feb 22 01:59:11 CST 2003


The following patch

  revision 1.28
  date: 2003/02/19 23:27:01;  author: julliard;  state: Exp;  lines: +5 -0
  Jukka Heinonen <jhei at iki.fi>
  Ignore get shadow buffer function.
  Remember to synchronize VGA display on program exit because update
  thread may not have time to run.

introduced an incorrect trace, which the patch below seems to fix.
Tested on FreeBSD-4.7.

Gerald

ChangeLog:
  Fix TRACE format string.

Index: int10.c
===================================================================
RCS file: /home/wine/wine/dlls/winedos/int10.c,v
retrieving revision 1.28
diff -u -3 -p -r1.28 int10.c
--- int10.c	19 Feb 2003 23:27:01 -0000	1.28
+++ int10.c	22 Feb 2003 07:56:46 -0000
@@ -1111,7 +1111,7 @@ void WINAPI DOSVM_Int10Handler( CONTEXT8
         break;

     case 0xfe: /* GET SHADOW BUFFER */
-        TRACE( "GET SHADOW BUFFER %x:%x - ignored\n",
+        TRACE( "GET SHADOW BUFFER %lx:%x - ignored\n",
                context->SegEs, DI_reg(context) );
         break;




More information about the wine-patches mailing list