]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Fix operator string for inequality expression
authorJürg Billeter <j@bitron.ch>
Sun, 27 Jun 2010 11:37:28 +0000 (13:37 +0200)
committerJürg Billeter <j@bitron.ch>
Sun, 27 Jun 2010 11:37:28 +0000 (13:37 +0200)
vala/valabinaryexpression.vala

index 6e4bbaca936fa4ef5f922c4f52107412bb8d4220..8e813e21918b3a95ef89fca786441a9062b0a66e 100644 (file)
@@ -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 "^";