summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-08-04 22:38:44 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-04 22:38:44 +0300
commit92447d4e21edce67f88dbaded77fcc5d6f4f639e (patch)
tree13c5a05456e0adb92e1dabe9bc4a5bfac3413775
parentb69cea0e182525f1b89503291ccdfd132fa3cddb (diff)
downloadparanucker-92447d4e21edce67f88dbaded77fcc5d6f4f639e.tar.gz
paranucker-92447d4e21edce67f88dbaded77fcc5d6f4f639e.tar.bz2
paranucker-92447d4e21edce67f88dbaded77fcc5d6f4f639e.tar.xz
paranucker-92447d4e21edce67f88dbaded77fcc5d6f4f639e.zip
In warnings replaces words fields and parameters to variables.
-rw-r--r--src/analysis/reports.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/analysis/reports.cpp b/src/analysis/reports.cpp
index 0f4b197..be91c3a 100644
--- a/src/analysis/reports.cpp
+++ b/src/analysis/reports.cpp
@@ -75,7 +75,7 @@ void reportParmDeclNullPointer(Node *mainNode,
isIn(node->label, wi.needCheckNullVars))
{
Log::warn(findBackLocation(mainNode),
- "Using parameter '%s' without checking for null pointer",
+ "Using variable '%s' without checking for null pointer",
node->label);
}
}
@@ -127,7 +127,7 @@ void reportParmDeclLeftNullPointer(Node *mainNode,
isNotIn(var.name, wi.knownVars)))
{
Log::warn(findBackLocation(mainNode),
- "Using field '%s' without checking for null pointer",
+ "Using variable '%s' without checking for null pointer",
var.name);
}
}
@@ -152,7 +152,7 @@ void reportComponentRefNullPointer(Node *mainNode,
isIn(var.name, wi.needCheckNullVars))
{
Log::warn(findBackLocation(mainNode),
- "Using field '%s' without checking for null pointer",
+ "Using variable '%s' without checking for null pointer",
var.name);
}
}