ntoskrnl.exe: Fix trace typo.

This commit is contained in:
Alexander Morozov 2008-10-09 13:00:00 +04:00 committed by Alexandre Julliard
parent 4ac4401c41
commit 7541ecbf4c
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}