Make use of correct format String:

1) UINT64 should use %lx
2) POINTER type should use %p
3) EFI_STATUS should use %r


git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6253 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qwang12
2008-10-27 10:13:00 +00:00
parent 13c310654c
commit 0e549d5be5
13 changed files with 70 additions and 70 deletions

View File

@ -145,7 +145,7 @@ EhcDumpQh (
DEBUG ((EFI_D_INFO, Msg));
}
DEBUG ((EFI_D_INFO, "Queue head @ 0x%x, interval %d, next qh %x\n",
DEBUG ((EFI_D_INFO, "Queue head @ 0x%p, interval %d, next qh %x\n",
Qh, Qh->Interval, Qh->NextQh));
QhHw = &Qh->QhHw;