diff options
author | Qiu Shumin <shumin.qiu@intel.com> | 2015-06-08 05:34:08 +0000 |
---|---|---|
committer | shenshushi <shenshushi@Edk2> | 2015-06-08 05:34:08 +0000 |
commit | 796fecd84b740f24c26f0791a6cde122517fa2df (patch) | |
tree | b3f2989f7678d181b8445f6013516ce179168a82 /MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode | |
parent | 94e3eee6e827aa971228044a3b826efa4ebaf1f7 (diff) | |
download | edk2-796fecd84b740f24c26f0791a6cde122517fa2df.tar.gz |
MdeModulePkg: Add %u and %lu support for PrintLib and 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@17570 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode')
-rw-r--r-- | MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/DebugLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/DebugLib.c b/MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/DebugLib.c index ce2f72aef8..68c1a5570b 100644 --- a/MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/DebugLib.c +++ b/MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/DebugLib.c @@ -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 {
|