aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_compile.c
diff options
context:
space:
mode:
Diffstat (limited to 'LuaSL/src/LuaSL_compile.c')
-rw-r--r--LuaSL/src/LuaSL_compile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/LuaSL/src/LuaSL_compile.c b/LuaSL/src/LuaSL_compile.c
index 0148444..06c55ef 100644
--- a/LuaSL/src/LuaSL_compile.c
+++ b/LuaSL/src/LuaSL_compile.c
@@ -313,7 +313,7 @@ LSL_Leaf *checkVariable(LuaSL_compiler *compiler, LSL_Leaf *identifier)
313 LSL_Leaf *var = findVariable(compiler, identifier->value.stringValue); 313 LSL_Leaf *var = findVariable(compiler, identifier->value.stringValue);
314 314
315 if (NULL == var) 315 if (NULL == var)
316 PE("NOT found %s @ line %d column %d!", identifier->value.stringValue, identifier->line, identifier->column); 316 PE("NOT found %s @ line %d, column %d!", identifier->value.stringValue, identifier->line, identifier->column);
317#ifdef LUASL_DEBUG 317#ifdef LUASL_DEBUG
318 else 318 else
319 PI("Found %s!", identifier->value.stringValue); 319 PI("Found %s!", identifier->value.stringValue);
@@ -428,7 +428,7 @@ LSL_Leaf *addOperation(LuaSL_compiler *compiler, LSL_Leaf *left, LSL_Leaf *lval,
428 rightType = allowed[right->basicType].name; 428 rightType = allowed[right->basicType].name;
429 } 429 }
430 430
431 PE("Invalid operation [%s(%s) %s %s(%s)] @ line %d column %d", leftType, leftToken, lval->token->token, rightType, rightToken, lval->line, lval->column); 431 PE("Invalid operation [%s(%s) %s %s(%s)] @ line %d, column %d!", leftType, leftToken, lval->token->token, rightType, rightToken, lval->line, lval->column);
432 } 432 }
433 } 433 }
434 434