diff options
Diffstat (limited to 'lib/Analysis/GRExprEngineInternalChecks.cpp')
-rw-r--r-- | lib/Analysis/GRExprEngineInternalChecks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/GRExprEngineInternalChecks.cpp b/lib/Analysis/GRExprEngineInternalChecks.cpp index 35ca0c5dfb..33546ea224 100644 --- a/lib/Analysis/GRExprEngineInternalChecks.cpp +++ b/lib/Analysis/GRExprEngineInternalChecks.cpp @@ -659,7 +659,7 @@ void CheckUndefinedArg::PreVisitCallExpr(CheckerContext &C, const CallExpr *CE){ if (C.getState()->getSVal(*I).isUndef()) { if (ExplodedNode *ErrorNode = C.generateNode(CE, C.getState(), true)) { if (!BT) - BT = new BugType("Uninitialized argument.", "Logic Errors."); + BT = new BugType("Uninitialized argument.", "Logic errors"); // Generate a report for this bug. ArgReport *Report = new ArgReport(*BT, "Pass-by-value argument in function call is undefined.", |