Update libdparse

This commit is contained in:
Hackerpilot 2015-02-01 00:26:41 -08:00
parent e498d461df
commit 05cc5bf635
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit 74eafc6fea9a436dbc95f2dafa8bbe069600915f Subproject commit 36e3bcd5d0db2fc6ba6300b168109752961330c1

View File

@ -27,7 +27,7 @@ class CommaExpressionCheck : BaseAnalyzer
{ {
if (ex.items.length > 1) if (ex.items.length > 1)
{ {
addErrorMessage(ex.items[1].line, ex.items[1].column, KEY, addErrorMessage(ex.line, ex.column, KEY,
"Avoid using the comma expression."); "Avoid using the comma expression.");
} }
ex.accept(this); ex.accept(this);