Fix a warning message typo.

[COMPILER]
* BUG: Fix a warning message typo.
This commit is contained in:
gambas 2018-02-14 17:07:06 +01:00
parent d1f6bc62c4
commit a2099dea77

View file

@ -246,7 +246,7 @@ void CLASS_check_unused_global(CLASS *class)
else
{
if (TYPE_get_kind(type) == TK_VARIABLE)
COMPILE_print(MSG_WARNING, sym->global.line, "unitialized global variable: &1", SYMBOL_get_name(&sym->symbol));
COMPILE_print(MSG_WARNING, sym->global.line, "uninitialized global variable: &1", SYMBOL_get_name(&sym->symbol));
}
}
}