We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c4a386 commit eeb09aeCopy full SHA for eeb09ae
cpp/ql/test/query-tests/Likely Bugs/Format/WrongTypeFormatArguments/Buildless/second.cpp
@@ -10,8 +10,8 @@ void test_size_t() {
10
11
printf("%zd", s); // GOOD
12
printf("%zi", s); // GOOD
13
- printf("%zu", s); // GOOD (we generally permits signedness changes) [FALSE POSITIVE]
14
- 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]
15
printf("%d", s); // BAD
16
printf("%ld", s); // BAD
17
printf("%lld", s); // BAD
0 commit comments