DIRECTOR: Lingo: Made the unassigned variable match the original

This commit is contained in:
Eugene Sandulenko 2016-06-24 23:12:20 +02:00
parent 0f3f6ba7eb
commit 61e80e158b

View File

@ -141,7 +141,7 @@ bool Lingo::verify(Symbol *s) {
}
if (s->type == VOID) {
warning("undefined variable '%s'", s->name);
warning("Variable used before assigning a value '%s'", s->name);
return false;
}