On Fri Jul 11 18:10:29 2025 +0000, Connor McAdams wrote:
ok(keys_len >= ARRAY_SIZE(expected_keys), "Expected %lu >= %u\n", keys_len, ARRAY_SIZE(expected_keys));
Casting this feels a bit funky, I'd just do the above instead.
Unfortunately, anything with sizeof needs to be cast to a known-size type, or it results in a `-Wformat` warning (at least on Clang) on either i686 or x86_64.