diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-09-01 00:17:12 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-09-01 00:17:12 +0000 |
commit | 27a36e9512d40d8bf431a9eff32e3375d24092cb (patch) | |
tree | 5ac04b3dcd5584b9aa48c1d2820c0dda6ba22392 /lib/Analysis/GRExprEngineInternalChecks.cpp | |
parent | 303e6d7554badb1c42844080eebb9594c27e5373 (diff) |
Sentence-case bug category.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80644 91177308-0d34-0410-b5e6-96231b3b80d8
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.", |