Skip to content

Commit 55b6f53

Browse files
committed
Fix query format
1 parent 0ce2c64 commit 55b6f53

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

c/cert/src/rules/EXP37-C/DoNotCallFunctionsWithIncompatibleArguments.ql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@ where
2929
complexArgumentPassedToRealParameter(fc, f, p)
3030
)
3131
select fc,
32-
"Argument $@ in call to " + f.toString() + " is incompatible with the function parameter type.", fc.getArgument(p.getIndex()) as arg, arg.toString()
32+
"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

Comments
 (0)