diff --git a/src/runtime/runtime.c b/src/runtime/runtime.c index 3567e2d..09e30fc 100644 --- a/src/runtime/runtime.c +++ b/src/runtime/runtime.c @@ -914,7 +914,7 @@ static _Bool step(Runtime *runtime, Error *error) { if(error->occurred == 0) // There's no such variable. - Error_Report(error, 1, "Reference to undefined variable \"%s\"", ops[0].as_string); + Error_Report(error, 0, "Reference to undefined variable \"%s\"", ops[0].as_string); return 0; }