summaryrefslogtreecommitdiffstats
path: root/MdeModulePkg/Library/ResetUtilityLib
diff options
context:
space:
mode:
authorRuiyu Ni <ruiyu.ni@intel.com>2018-02-13 11:02:30 +0800
committerStar Zeng <star.zeng@intel.com>2018-02-14 09:13:48 +0800
commit5eecb45af0caa07bacc03aecc6cec3f74c6fa95f (patch)
treeafab88255efb3382f0b185f3a1adb14ef27be595 /MdeModulePkg/Library/ResetUtilityLib
parent99576ee3fde9228dd5cfedd268f6bc82a0c9f732 (diff)
downloadedk2-5eecb45af0caa07bacc03aecc6cec3f74c6fa95f.tar.gz
edk2-5eecb45af0caa07bacc03aecc6cec3f74c6fa95f.tar.bz2
edk2-5eecb45af0caa07bacc03aecc6cec3f74c6fa95f.zip
MdeModulePkg/ResetUtilityLib: Fix GCC build failure
Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com> Cc: Dandan Bi <dandan.bi@intel.com> Reviewed-by: Star Zeng <star.zeng@intel.com> Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
Diffstat (limited to 'MdeModulePkg/Library/ResetUtilityLib')
-rw-r--r--MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c b/MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c
index 90de94ca9b..da5fa7b094 100644
--- a/MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c
+++ b/MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c
@@ -1,7 +1,7 @@
/** @file
This contains the business logic for the module-specific Reset Helper functions.
- Copyright (c) 2017 Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2017 - 2018 Intel Corporation. All rights reserved.<BR>
Copyright (c) 2016 Microsoft Corporation. All rights reserved.<BR>
This program and the accompanying materials are licensed and made available under
@@ -100,7 +100,7 @@ GetResetPlatformSpecificGuid (
//
if ((ResetDataStringSize < DataSize) && (DataSize - ResetDataStringSize) >= sizeof (GUID)) {
ResetSubtypeGuid = (GUID *)((UINT8 *)ResetData + ResetDataStringSize);
- DEBUG ((DEBUG_VERBOSE, __FUNCTION__" - Detected reset subtype %g...\n", ResetSubtypeGuid));
+ DEBUG ((DEBUG_VERBOSE, "%a - Detected reset subtype %g...\n", __FUNCTION__, ResetSubtypeGuid));
return ResetSubtypeGuid;
}
return NULL;