From: Jürg Billeter Date: Sun, 27 Jun 2010 11:37:28 +0000 (+0200) Subject: Fix operator string for inequality expression X-Git-Tag: 0.9.3~90 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6e8cd5fd8793cfb687e929129e0e32d2f2f15441;p=thirdparty%2Fvala.git Fix operator string for inequality expression --- diff --git a/vala/valabinaryexpression.vala b/vala/valabinaryexpression.vala index 6e4bbaca9..8e813e219 100644 --- a/vala/valabinaryexpression.vala +++ b/vala/valabinaryexpression.vala @@ -113,7 +113,7 @@ public class Vala.BinaryExpression : Expression { case BinaryOperator.LESS_THAN_OR_EQUAL: return "<="; case BinaryOperator.GREATER_THAN_OR_EQUAL: return ">="; case BinaryOperator.EQUALITY: return "=="; - case BinaryOperator.INEQUALITY: return "!+"; + case BinaryOperator.INEQUALITY: return "!="; case BinaryOperator.BITWISE_AND: return "&"; case BinaryOperator.BITWISE_OR: return "|"; case BinaryOperator.BITWISE_XOR: return "^";