Alexander Morozov : ntoskrnl.exe: Fix trace typo.
Module: wine Branch: master Commit: 7541ecbf4c5f0eaa8f19df44392b7a6bb6c520be URL: http://source.winehq.org/git/wine.git/?a=commit;h=7541ecbf4c5f0eaa8f19df4439... Author: Alexander Morozov <amorozov(a)etersoft.ru> Date: Thu Oct 9 13:00:00 2008 +0400 ntoskrnl.exe: Fix trace typo. --- dlls/ntoskrnl.exe/ntoskrnl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/ntoskrnl.exe/ntoskrnl.c b/dlls/ntoskrnl.exe/ntoskrnl.c index 9af2f16..1ed3040 100644 --- a/dlls/ntoskrnl.exe/ntoskrnl.c +++ b/dlls/ntoskrnl.exe/ntoskrnl.c @@ -663,7 +663,7 @@ void WINAPI IofCompleteRequest( IRP *irp, UCHAR priority_boost ) TRACE( "calling %p( %p, %p, %p )\n", routine, irpsp->DeviceObject, irp, irpsp->Context ); stat = routine( irpsp->DeviceObject, irp, irpsp->Context ); - TRACE( "CompletionRoutine returned %x\n", status ); + TRACE( "CompletionRoutine returned %x\n", stat ); if (STATUS_MORE_PROCESSING_REQUIRED == stat) return; }
participants (1)
-
Alexandre Julliard