]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Fix an error message
authorWolfgang (Blub) Bumiller <blub@speed.at>
Thu, 16 Aug 2012 13:59:09 +0000 (15:59 +0200)
committerWolfgang (Blub) Bumiller <blub@speed.at>
Thu, 16 Aug 2012 13:59:09 +0000 (15:59 +0200)
parser.c

index 1f071a74a412e1dc8c70dee469f7e5099abebf2a..fcad9b4a857764a86c530785029ca799394f52b0 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -484,7 +484,7 @@ static bool parser_sy_pop(parser_t *parser, shunt *sy)
     switch (op->id)
     {
         default:
-            parseerror(parser, "internal error: unhandled operand");
+            parseerror(parser, "internal error: unhandled operator");
             return false;
 
         case opid1('.'):