[U-Boot] [PATCH 1/1] cmd: tpm-v2: use correct format code

updates is defined as unsigned int. So use %u for printf().
Signed-off-by: Heinrich Schuchardt xypron.glpk@gmx.de --- cmd/tpm-v2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmd/tpm-v2.c b/cmd/tpm-v2.c index bb51834c47..459a955d29 100644 --- a/cmd/tpm-v2.c +++ b/cmd/tpm-v2.c @@ -151,7 +151,7 @@ static int do_tpm_pcr_read(cmd_tbl_t *cmdtp, int flag, int argc,
rc = tpm2_pcr_read(dev, index, priv->pcr_select_min, data, &updates); if (!rc) { - printf("PCR #%u content (%d known updates):\n", index, updates); + printf("PCR #%u content (%u known updates):\n", index, updates); print_byte_string(data, TPM2_DIGEST_LEN); }

On Sun, Jan 06, 2019 at 12:09:10PM +0100, Heinrich Schuchardt wrote:
updates is defined as unsigned int. So use %u for printf().
Signed-off-by: Heinrich Schuchardt xypron.glpk@gmx.de
Applied to u-boot/master, thanks!
participants (2)
-
Heinrich Schuchardt
-
Tom Rini