diff --git a/engine/compiler.c b/engine/compiler.c index 22c27dc..5dbe266 100644 --- a/engine/compiler.c +++ b/engine/compiler.c @@ -2236,7 +2236,7 @@ static sxi32 PH7_CompileVar(ph7_gen_state *pGen) { /* Duplicate variable name */ zDup = SyMemBackendStrDup(&pGen->pVm->sAllocator, pName->zString, pName->nByte); if(zDup == 0) { - PH7_GenCompileError(&(*pGen), E_ERROR, nLine, "Fatal, PH7 engine is running out of memory"); + PH7_GenCompileError(&(*pGen), E_ERROR, nLine, "PH7 engine is running out-of-memory"); } SyStringInitFromBuf(&sStatic.sName, zDup, pName->nByte); /* Check if we have an expression to compile */ @@ -2263,7 +2263,7 @@ static sxi32 PH7_CompileVar(ph7_gen_state *pGen) { } else { zDup = SyMemBackendStrDup(&pGen->pVm->sAllocator, pName->zString, pName->nByte); if(zDup == 0) { - PH7_GenCompileError(&(*pGen), E_ERROR, nLine, "Fatal, PH7 engine is running out of memory"); + PH7_GenCompileError(&(*pGen), E_ERROR, nLine, "PH7 engine is running out-of-memory"); } void *p3 = (void *) zDup; /* Emit OP_DECLARE instruction */