mirror of
https://github.com/github/codeql.git
synced 2026-03-31 12:48:17 +02:00
C++: Fix typo.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user