mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-28 16:14:04 +02:00
Nt32Pkg: Replace [Ascii|Unicode]ValueToString
It is the follow up of commits 51f0ceb..9e32e97 to replace AsciiValueToString/UnicodeValueToString with AsciiValueToStringS/UnicodeValueToStringS. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu <hao.a.wu@intel.com> Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>
This commit is contained in:
parent
9f4048f7f8
commit
de66e154ac
@ -1,7 +1,7 @@
|
|||||||
/** @file
|
/** @file
|
||||||
Perform the platform memory test
|
Perform the platform memory test
|
||||||
|
|
||||||
Copyright (c) 2004 - 2015, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2004 - 2017, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
@ -155,7 +155,7 @@ PlatformBootManagerMemoryTest (
|
|||||||
TempData
|
TempData
|
||||||
);
|
);
|
||||||
if (TestPercent != PreviousValue) {
|
if (TestPercent != PreviousValue) {
|
||||||
UnicodeValueToString (StrPercent, 0, TestPercent, 0);
|
UnicodeValueToStringS (StrPercent, sizeof (StrPercent), 0, TestPercent, 0);
|
||||||
TmpStr = HiiGetString (gStringPackHandle, STRING_TOKEN (STR_MEMORY_TEST_PERCENT), NULL);
|
TmpStr = HiiGetString (gStringPackHandle, STRING_TOKEN (STR_MEMORY_TEST_PERCENT), NULL);
|
||||||
if (TmpStr != NULL) {
|
if (TmpStr != NULL) {
|
||||||
//
|
//
|
||||||
@ -223,7 +223,7 @@ PlatformBootManagerMemoryTest (
|
|||||||
|
|
||||||
Done:
|
Done:
|
||||||
if (!FeaturePcdGet(PcdBootlogoOnlyEnable)) {
|
if (!FeaturePcdGet(PcdBootlogoOnlyEnable)) {
|
||||||
UnicodeValueToString (StrTotalMemory, COMMA_TYPE, TotalMemorySize, 0);
|
UnicodeValueToStringS (StrTotalMemory, StrTotalMemorySize, COMMA_TYPE, TotalMemorySize, 0);
|
||||||
if (StrTotalMemory[0] == L',') {
|
if (StrTotalMemory[0] == L',') {
|
||||||
StrTotalMemory++;
|
StrTotalMemory++;
|
||||||
StrTotalMemorySize -= sizeof (CHAR16);
|
StrTotalMemorySize -= sizeof (CHAR16);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user