From 1ce760568c83adede7400a8dfb1b62e1eb17caa8 Mon Sep 17 00:00:00 2001 From: Sylvain Petreolle Date: Fri, 27 Jun 2003 19:40:29 +0000 Subject: [PATCH] Display the interrupt number in hexadecimal. --- dlls/winedos/int31.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winedos/int31.c b/dlls/winedos/int31.c index d5a9e91f7da..28e93021b82 100644 --- a/dlls/winedos/int31.c +++ b/dlls/winedos/int31.c @@ -1062,7 +1062,7 @@ void WINAPI DOSVM_Int31Handler( CONTEXT86 *context ) break; case 0x0300: /* Simulate real mode interrupt */ - TRACE( "Simulate real mode interrupt %d.\n", BL_reg(context)); + TRACE( "Simulate real mode interrupt %02x.\n", BL_reg(context)); DOSVM_CallRMInt( context ); break;