Commit ac6a216c authored by Mike Gabriel's avatar Mike Gabriel

lib/X11/Xrm.c: Compiler warning fix: logical-not-parentheses

Xrm.c: In function 'PutEntry': Xrm.c:900:15: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses] !quarks[2] != table->leaf) ^~
parent a6ffabda
......@@ -897,7 +897,7 @@ static void PutEntry(
/* bump to loose table, if any */
table = *(prev = &table->next);
if (!table || table->name != q ||
!quarks[2] != table->leaf)
(!quarks[2]) != table->leaf)
break; /* not found */
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment