summaryrefslogtreecommitdiff
path: root/FatPkg/FatPei
diff options
context:
space:
mode:
authorMichael Kubacki <michael.kubacki@microsoft.com>2022-08-02 07:52:09 -0400
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2022-09-09 01:42:39 +0000
commitb4036b52b18b215973a1d388c37b5affd55679cc (patch)
tree854ccfd54716ae0c64df2a5c2101e66a4c40cb8c /FatPkg/FatPei
parent917a7e3f347adb0721ff161a68309f51f621eec5 (diff)
downloadedk2-b4036b52b18b215973a1d388c37b5affd55679cc.zip
edk2-b4036b52b18b215973a1d388c37b5affd55679cc.tar.gz
edk2-b4036b52b18b215973a1d388c37b5affd55679cc.tar.bz2
FatPkg/FatPei: Remove extraneous debug message argument
This debug macro should take one argument based on the number of print specifiers defined. However, two arguments are given. It looks like the code may have been refactored such that the second argument was moved to a new print and this argument was not removed. In any case, it should not be there now. Cc: Ray Ni <ray.ni@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
Diffstat (limited to 'FatPkg/FatPei')
-rw-r--r--FatPkg/FatPei/Gpt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/FatPkg/FatPei/Gpt.c b/FatPkg/FatPei/Gpt.c
index 0a1a25c..9e17ce8 100644
--- a/FatPkg/FatPei/Gpt.c
+++ b/FatPkg/FatPei/Gpt.c
@@ -361,7 +361,7 @@ PartitionCheckGptEntryArray (
PrivateData->BlockDeviceCount++;
- DEBUG ((DEBUG_INFO, "Find GPT Partition [0x%lx", PartitionEntryBuffer[Index].StartingLBA, BlockDevPtr->LastBlock));
+ DEBUG ((DEBUG_INFO, "Find GPT Partition [0x%lx", PartitionEntryBuffer[Index].StartingLBA));
DEBUG ((DEBUG_INFO, ", 0x%lx]\n", BlockDevPtr->LastBlock));
DEBUG ((DEBUG_INFO, " BlockSize %x\n", BlockDevPtr->BlockSize));
}