From 61443bb899b4bbbc8b199826ee5419184c2c1d1a Mon Sep 17 00:00:00 2001 From: Mike Maslenkin Date: Thu, 12 Oct 2023 00:04:20 +0300 Subject: [PATCH] RedfishClientPkg: fix format specifier in DEBUG macro Signed-off-by: Mike Maslenkin Cc: Abner Chang Cc: Nickle Wang Cc: Igor Kulchytskyy --- .../Features/MemoryCollectionDxe/MemoryCollectionDxe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RedfishClientPkg/Features/MemoryCollectionDxe/MemoryCollectionDxe.c b/RedfishClientPkg/Features/MemoryCollectionDxe/MemoryCollectionDxe.c index dc1ee5ca4..bebc605dc 100644 --- a/RedfishClientPkg/Features/MemoryCollectionDxe/MemoryCollectionDxe.c +++ b/RedfishClientPkg/Features/MemoryCollectionDxe/MemoryCollectionDxe.c @@ -45,7 +45,7 @@ HandleResource ( // Check and see if this is target resource that we want to handle. // Some resource is handled by other provider so we have to make sure this first. // - DEBUG ((REDFISH_DEBUG_TRACE, "%s Identify for %s\n", __func__, Uri)); + DEBUG ((REDFISH_DEBUG_TRACE, "%a Identify for %s\n", __func__, Uri)); ConfigLang = RedfishGetConfigLanguage (Uri); if (ConfigLang == NULL) { Status = EdkIIRedfishResourceConfigIdentify (&SchemaInfo, Uri, Private->InformationExchange);