Add missing space to error message

This commit is contained in:
dbrotz
2019-05-05 18:13:10 -07:00
parent 8da4feb83c
commit 540564694c

View File

@@ -298,7 +298,7 @@ char *sym_GetStringValue(char *tzSym)
if (pSym != NULL) if (pSym != NULL)
return pSym->pMacro; return pSym->pMacro;
yyerror("Stringsymbol '%s' not defined", tzSym); yyerror("String symbol '%s' not defined", tzSym);
return NULL; return NULL;
} }