C++: Fix typo.

This commit is contained in:
Geoffrey White
2026-03-16 16:12:30 +00:00
parent 3c4a386f3f
commit eeb09ae389

View File

@@ -10,8 +10,8 @@ void test_size_t() {
printf("%zd", s); // GOOD
printf("%zi", s); // GOOD
printf("%zu", s); // GOOD (we generally permits signedness changes) [FALSE POSITIVE]
printf("%zx", s); // GOOD (we generally permits signedness changes) [FALSE POSITIVE]
printf("%zu", s); // GOOD (we generally permit signedness changes) [FALSE POSITIVE]
printf("%zx", s); // GOOD (we generally permit signedness changes) [FALSE POSITIVE]
printf("%d", s); // BAD
printf("%ld", s); // BAD
printf("%lld", s); // BAD