Fix a forgotten '!' that broke the informer.

[INFORMER]
* BUG: Fix a forgotten '!' that broke the informer.
This commit is contained in:
gambas 2019-05-08 14:15:01 +02:00
parent 7ea4fb4ca5
commit beb79ec952

View file

@ -293,7 +293,7 @@ static void add_class(const char *name, bool has_static)
if (out_list)
{
if (TABLE_add_symbol_exist(_classes, name, strlen(name), &index))
if (!TABLE_add_symbol_exist(_classes, name, strlen(name), &index))
{
fputs(name, out_list);
if (has_static)