diff options
author | Klaus Heinrich Kiwi <klaus@linux.vnet.ibm.com> | 2021-02-20 17:40:45 -0300 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2021-02-26 16:17:43 +0100 |
commit | 95cacc86f2f4baa2d86f68a63baa9e8e797e4e46 (patch) | |
tree | 3cc800d34737c7452b833cf3d1f132a15f01b810 | |
parent | 77cae565bde9a9fa98e191006c0672d57d862a48 (diff) | |
download | u-boot-95cacc86f2f4baa2d86f68a63baa9e8e797e4e46.tar.gz |
tools/mkeficapsule.c: fix DEBUG build
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 <klaus@linux.vnet.ibm.com>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
-rw-r--r-- | tools/mkeficapsule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mkeficapsule.c b/tools/mkeficapsule.c index 162494907a..1613e74ca7 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 |