Apply suggestions from code review

Co-authored-by: BenBE <BenBE@geshi.org>
This commit is contained in:
Nathan Scott
2021-08-17 15:42:10 +10:00
committed by GitHub
parent c7f634ec21
commit d5ff5c48a8
2 changed files with 2 additions and 2 deletions

View File

@ -287,7 +287,7 @@ void PCPDynamicColumn_writeField(PCPDynamicColumn* this, const Process* proc, Ri
int PCPDynamicColumn_compareByKey(const PCPProcess* p1, const PCPProcess* p2, ProcessField key) {
const PCPDynamicColumn* column = Hashtable_get(p1->super.processList->dynamicColumns, key);
if (column == NULL)
if (!column)
return -1;
size_t metric = column->id;