We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ce2c64 commit 55b6f53Copy full SHA for 55b6f53
1 file changed
c/cert/src/rules/EXP37-C/DoNotCallFunctionsWithIncompatibleArguments.ql
@@ -29,4 +29,5 @@ where
29
complexArgumentPassedToRealParameter(fc, f, p)
30
)
31
select fc,
32
- "Argument $@ in call to " + f.toString() + " is incompatible with the function parameter type.", fc.getArgument(p.getIndex()) as arg, arg.toString()
+ "Argument $@ in call to " + f.toString() + " is incompatible with the function parameter type.",
33
+ fc.getArgument(p.getIndex()) as arg, arg.toString()
0 commit comments