mirror of
https://github.com/chipsec/chipsec
synced 2026-06-08 13:31:00 +00:00
Delete extra argument passed to DbgPrint not used by format string.
This commit is contained in:
committed by
BrentHoltsclaw
parent
0f2d02fb1d
commit
38fdeb0d71
@@ -605,7 +605,7 @@ DriverDeviceControl(
|
||||
RtlCopyBytes( &va, (BYTE*)Irp->AssociatedIrp.SystemBuffer, sizeof(UINTN) );
|
||||
pa = MmGetPhysicalAddress( (PVOID)va );
|
||||
|
||||
DbgPrint( "[chipsec][IOCTL_GET_PHYSADDR] Translated virtual address 0x%I64X to physical: 0x%I64X\n", va, pa.QuadPart, pa.LowPart);
|
||||
DbgPrint( "[chipsec][IOCTL_GET_PHYSADDR] Translated virtual address 0x%I64X to physical: 0x%I64X\n", va, pa.QuadPart);
|
||||
RtlCopyBytes( Irp->AssociatedIrp.SystemBuffer, (void*)&pa, sizeof(UINTN) );
|
||||
IrpSp->Parameters.Read.Length = sizeof(UINTN);
|
||||
dwBytesWritten = IrpSp->Parameters.Read.Length;
|
||||
|
||||
Reference in New Issue
Block a user