Skip to content

Commit

Permalink
analyzer-plugin/MainCallChecker.cpp: s/generateSink/generateErrorNode…
Browse files Browse the repository at this point in the history
…/, corresponding to r247859.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@247862 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
chapuni committed Sep 16, 2015
1 parent 6df9416 commit 0e20736
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/analyzer-plugin/MainCallChecker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ void MainCallChecker::checkPreStmt(const CallExpr *CE, CheckerContext &C) const
return;

if (II->isStr("main")) {
ExplodedNode *N = C.generateSink();
ExplodedNode *N = C.generateErrorNode();
if (!N)
return;

Expand Down

0 comments on commit 0e20736

Please sign in to comment.