From: Wolfgang (Blub) Bumiller Date: Mon, 26 Nov 2012 13:05:31 +0000 (+0100) Subject: Fix a small typo X-Git-Tag: 0.1.9~205 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=08551eefbaa0d71ca8305b039fd23abd9f67d1a2;p=xonotic%2Fgmqcc.git Fix a small typo --- diff --git a/parser.c b/parser.c index bb41c70..c771dd6 100644 --- a/parser.c +++ b/parser.c @@ -848,7 +848,7 @@ static bool parser_sy_pop(parser_t *parser, shunt *sy) if (exprs[1]->expression.vtype != exprs[2]->expression.vtype) { ast_type_to_string(exprs[1], ty1, sizeof(ty1)); ast_type_to_string(exprs[2], ty2, sizeof(ty2)); - parseerror(parser, "iperands of ternary expression must have the same type, got %s and %s", ty1, ty2); + parseerror(parser, "operands of ternary expression must have the same type, got %s and %s", ty1, ty2); return false; } if (CanConstFold1(exprs[0]))