Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.

Commit 4fa86f2

Browse files
jandrachalgldiviney
authored andcommitted
Extended "." char to wchar_t in formatted string
1 parent b40b353 commit 4fa86f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DcpmPkg/common/Convert.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,7 @@ GetFormattedSizeString (
837837
if (Units == DISPLAY_SIZE_UNIT_B || NumberOfDigitsAfterDecimal == 0) {
838838
*ppFormattedSizeString = CatSPrintClean(*ppFormattedSizeString, FORMAT_UINT64, ValueBeforeDecimal);
839839
} else {
840-
*ppFormattedSizeString = CatSPrintClean(*ppFormattedSizeString, FORMAT_UINT64 "." FORMAT_DYNAMIC_WIDTH_LEADING_ZEROS,
840+
*ppFormattedSizeString = CatSPrintClean(*ppFormattedSizeString, FORMAT_UINT64 L"." FORMAT_DYNAMIC_WIDTH_LEADING_ZEROS,
841841
ValueBeforeDecimal, (UINTN)NumberOfDigitsAfterDecimal, ValueAfterDecimal);
842842
}
843843

0 commit comments

Comments
 (0)