Skip to content

Commit

Permalink
Extended "." char to wchar_t in formatted string
Browse files Browse the repository at this point in the history
  • Loading branch information
jandrachal authored and gldiviney committed Nov 26, 2018
1 parent b40b353 commit 4fa86f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DcpmPkg/common/Convert.c
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ GetFormattedSizeString (
if (Units == DISPLAY_SIZE_UNIT_B || NumberOfDigitsAfterDecimal == 0) {
*ppFormattedSizeString = CatSPrintClean(*ppFormattedSizeString, FORMAT_UINT64, ValueBeforeDecimal);
} else {
*ppFormattedSizeString = CatSPrintClean(*ppFormattedSizeString, FORMAT_UINT64 "." FORMAT_DYNAMIC_WIDTH_LEADING_ZEROS,
*ppFormattedSizeString = CatSPrintClean(*ppFormattedSizeString, FORMAT_UINT64 L"." FORMAT_DYNAMIC_WIDTH_LEADING_ZEROS,
ValueBeforeDecimal, (UINTN)NumberOfDigitsAfterDecimal, ValueAfterDecimal);
}

Expand Down

0 comments on commit 4fa86f2

Please sign in to comment.