BPackageInfo::Parser: Fix error output

The "=" operator isn't actually allowed in a resolvable expression. It
has to be "==" instead.
This commit is contained in:
Ingo Weinhold
2013-05-01 02:08:43 +02:00
parent 98a0dd5fd8
commit 0c661892d4
+2 -2
View File
@@ -744,8 +744,8 @@ BPackageInfo::Parser::_ParseResolvableExprList(
parser._RewindTo(op); parser._RewindTo(op);
} else { } else {
throw ParseError( throw ParseError(
"expected '<', '<=', '=', '==', '!=', '>=', '>', comma or " "expected '<', '<=', '==', '!=', '>=', '>', comma or '}'",
"'}'", op.pos); op.pos);
} }
BPackageResolvableOperator resolvableOperator BPackageResolvableOperator resolvableOperator