From 95cacc86f2f4baa2d86f68a63baa9e8e797e4e46 Mon Sep 17 00:00:00 2001 From: Klaus Heinrich Kiwi Date: Sat, 20 Feb 2021 17:40:45 -0300 Subject: tools/mkeficapsule.c: fix DEBUG build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix a missing comma sign (,) from a printf(), that is only reachable if DEBUG is defined, in which case the build fails with: tools/mkeficapsule.c:266:36: error: expected β€˜)’ before β€˜bin’ 266 | printf("\tbin: %s\n\ttype: %pUl\n" bin, guid); | ^~~~ | ) Signed-off-by: Klaus Heinrich Kiwi Reviewed-by: Heinrich Schuchardt --- tools/mkeficapsule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/mkeficapsule.c') diff --git a/tools/mkeficapsule.c b/tools/mkeficapsule.c index 1624949..1613e74 100644 --- a/tools/mkeficapsule.c +++ b/tools/mkeficapsule.c @@ -263,7 +263,7 @@ static int create_fwbin(char *path, char *bin, efi_guid_t *guid, #ifdef DEBUG printf("For output: %s\n", path); - printf("\tbin: %s\n\ttype: %pUl\n" bin, guid); + printf("\tbin: %s\n\ttype: %pUl\n", bin, guid); printf("\tindex: %ld\n\tinstance: %ld\n", index, instance); #endif -- cgit v1.1