mirror of https://github.com/acidanthera/audk.git
IntelFrameworkModulePkg: Add %u and %lu support for DebugLib.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Qiu Shumin <shumin.qiu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17569 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
bbcf635164
commit
94e3eee6e8
|
@ -182,7 +182,7 @@ DebugPrint (
|
|||
if ((*Format == 'p') && (sizeof (VOID *) > 4)) {
|
||||
Long = TRUE;
|
||||
}
|
||||
if (*Format == 'p' || *Format == 'X' || *Format == 'x' || *Format == 'd') {
|
||||
if (*Format == 'p' || *Format == 'X' || *Format == 'x' || *Format == 'd' || *Format == 'u') {
|
||||
if (Long) {
|
||||
BASE_ARG (BaseListMarker, INT64) = VA_ARG (VaListMarker, INT64);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue