Fix a forgotten '!' that broke the informer.
[INFORMER] * BUG: Fix a forgotten '!' that broke the informer.
This commit is contained in:
parent
7ea4fb4ca5
commit
beb79ec952
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue