From 0524092539e01b1aacca8b92f01f3e5ef3ab2927 Mon Sep 17 00:00:00 2001 From: belliash Date: Sat, 9 Mar 2019 16:49:46 +0100 Subject: [PATCH] Add missing space in error message --- engine/parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/parser.c b/engine/parser.c index 5cb1a6e..dcd3cd7 100644 --- a/engine/parser.c +++ b/engine/parser.c @@ -461,7 +461,7 @@ static sxi32 ExprVerifyNodes(ph7_gen_state *pGen, ph7_expr_node **apNode, sxi32 } } if(iParen != 0 || iSquare != 0 || iQuesty != 0 || iBraces != 0) { - rc = PH7_GenCompileError(&(*pGen), E_ERROR, apNode[0]->pStart->nLine, "Syntax error,mismatched '(','[','{' or '?'"); + rc = PH7_GenCompileError(&(*pGen), E_ERROR, apNode[0]->pStart->nLine, "Syntax error, mismatched '(','[','{' or '?'"); if(rc != SXERR_ABORT) { rc = SXERR_SYNTAX; }