From 72fd13323c0390f2eeaafbbd9d9bdd552984b27b Mon Sep 17 00:00:00 2001 From: eholzbach Date: Sat, 8 Aug 2026 18:10:35 -0400 Subject: [PATCH] fix int/long mismatch on 32bit builds of ctl.c --- tools/ctl/ctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ctl/ctl.c b/tools/ctl/ctl.c index f21c9b0b3ed3..a1966473025a 100644 --- a/tools/ctl/ctl.c +++ b/tools/ctl/ctl.c @@ -507,7 +507,7 @@ static int ctl_set_get(struct ctl_data *ctl_data) ref_size = ctl_data->buffer[BUFFER_SIZE_OFFSET] + BUFFER_TLV_HEADER_BYTES; if (read_size != ref_size) { fprintf(stderr, - "Error: Blob TLV header size %u (plus %lu) does not match with read bytes count %zu.\n", + "Error: Blob TLV header size %u (plus %zu) does not match with read bytes count %zu.\n", ctl_data->buffer[BUFFER_SIZE_OFFSET], BUFFER_TLV_HEADER_BYTES, read_size); return -EINVAL;