git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@272 6f19259b-4bc3-4df7-8a09-765794883524

This commit is contained in:
yshang1 2006-05-25 04:02:58 +00:00
parent 0fff0c2629
commit f76fd83e6f
1 changed files with 17 additions and 17 deletions

View File

@ -133,7 +133,7 @@ BasePrintLibVSPrint (
// //
// Get the first character from the format string // Get the first character from the format string
// //
FormatCharacter = (*Format | (*(Format - 1) << 8)) & FormatMask; FormatCharacter = (*Format | (*(Format + 1) << 8)) & FormatMask;
// //
// Loop until the end of the format string is reached or the output buffer is full // Loop until the end of the format string is reached or the output buffer is full
@ -333,17 +333,17 @@ BasePrintLibVSPrint (
0, 0,
0, 0,
"%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x", "%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",
(UINTN) TmpGuid->Data1, TmpGuid->Data1,
(UINTN) TmpGuid->Data2, TmpGuid->Data2,
(UINTN) TmpGuid->Data3, TmpGuid->Data3,
(UINTN) TmpGuid->Data4[0], TmpGuid->Data4[0],
(UINTN) TmpGuid->Data4[1], TmpGuid->Data4[1],
(UINTN) TmpGuid->Data4[2], TmpGuid->Data4[2],
(UINTN) TmpGuid->Data4[3], TmpGuid->Data4[3],
(UINTN) TmpGuid->Data4[4], TmpGuid->Data4[4],
(UINTN) TmpGuid->Data4[5], TmpGuid->Data4[5],
(UINTN) TmpGuid->Data4[6], TmpGuid->Data4[6],
(UINTN) TmpGuid->Data4[7] TmpGuid->Data4[7]
); );
ArgumentString = ValueBuffer; ArgumentString = ValueBuffer;
} }
@ -359,11 +359,11 @@ BasePrintLibVSPrint (
0, 0,
0, 0,
"%02d/%02d/%04d %02d:%02d", "%02d/%02d/%04d %02d:%02d",
(UINTN) TmpTime->Month, TmpTime->Month,
(UINTN) TmpTime->Day, TmpTime->Day,
(UINTN) TmpTime->Year, TmpTime->Year,
(UINTN) TmpTime->Hour, TmpTime->Hour,
(UINTN) TmpTime->Minute TmpTime->Minute
); );
ArgumentString = ValueBuffer; ArgumentString = ValueBuffer;
} }