tpm: Fix a logging warning in unpack_byte_string()
authorSimon Glass <sjg@chromium.org>
Sat, 24 Nov 2018 04:29:35 +0000 (21:29 -0700)
committerSimon Glass <sjg@chromium.org>
Wed, 5 Dec 2018 13:01:34 +0000 (06:01 -0700)
Fix the printf() string to avoid a warning.

Signed-off-by: Simon Glass <sjg@chromium.org>
lib/tpm-common.c

index 2bf0b41..86b4f41 100644 (file)
@@ -119,7 +119,7 @@ int unpack_byte_string(const u8 *str, size_t size, const char *format, ...)
 
                if (offset + length > size) {
                        va_end(args);
-                       log_err("Failed to read: size=%d, offset=%x, len=%x\n",
+                       log_err("Failed to read: size=%zd, offset=%zx, len=%zx\n",
                                size, offset, length);
                        return -1;
                }