Skip to content

Commit 639642f

Browse files
committed
Formatting.
1 parent 0410ed7 commit 639642f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/ql/src/Likely Bugs/Format/NonConstantFormat.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ predicate isNonConst(DataFlow::Node node) {
6969
// Parameters of uncalled functions that aren't const
7070
exists(UncalledFunction f, Parameter p |
7171
f.getAParameter() = p and
72-
p = node.asParameter() and
72+
p = node.asParameter() and
7373
// Ignore main's argv parameter as it is already considered a `FlowSource`
7474
// not ignoring it will result in path redundancies
7575
(f.getName() = "main" implies p.getName() != "argv")

0 commit comments

Comments
 (0)