diff options
| author | Heinrich Schuchardt <[email protected]> | 2020-06-06 13:17:48 +0200 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2020-06-14 21:07:20 +0200 |
| commit | 4bb4249b39ce7284408c4d604a656be941427e63 (patch) | |
| tree | 17ceb1adb5f5bf7ba3545518d1b9db217d84d722 /lib/efi_loader | |
| parent | c7ff87e0ae3e619b5718eafcdee433af0a46df8b (diff) | |
efi_loader: printf code in efi_image_parse()
For size_t we have to use %zu for printing not %lu.
Fixes: 4540dabdcaca ("efi_loader: image_loader: support image
authentication")
Signed-off-by: Heinrich Schuchardt <[email protected]>
Diffstat (limited to 'lib/efi_loader')
| -rw-r--r-- | lib/efi_loader/efi_image_loader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_image_loader.c b/lib/efi_loader/efi_image_loader.c index 478aaf50d3a..230d41ae5ed 100644 --- a/lib/efi_loader/efi_image_loader.c +++ b/lib/efi_loader/efi_image_loader.c @@ -369,7 +369,7 @@ bool efi_image_parse(void *efi, size_t len, struct efi_image_regions **regp, /* 3. Extra data excluding Certificates Table */ if (bytes_hashed + authsz < len) { - debug("extra data for hash: %lu\n", + debug("extra data for hash: %zu\n", len - (bytes_hashed + authsz)); efi_image_region_add(regs, efi + bytes_hashed, efi + len - authsz, 0); |
