Message ID | 20210127174050.1536152-3-brian.gix@intel.com |
---|---|
State | New |
Headers | show |
Series | Fix 32 bit Compiler Errors | expand |
diff --git a/tools/mgmt-tester.c b/tools/mgmt-tester.c index fe73a6d89..6bc40181e 100644 --- a/tools/mgmt-tester.c +++ b/tools/mgmt-tester.c @@ -9122,7 +9122,7 @@ static void read_50_controller_cap_complete(uint8_t status, uint16_t length, if (sizeof(rp->cap_len) + rp->cap_len != length) { tester_warn("Controller capabilities malformed, size %lu != %u", - sizeof(rp->cap_len) + rp->cap_len, length); + (long) sizeof(rp->cap_len) + rp->cap_len, length); tester_test_failed(); }