Process: print default key

This commit is contained in:
Christian Göttsche 2021-12-08 13:02:18 +01:00
parent 1da78b5818
commit fa9f260f63
1 changed files with 1 additions and 0 deletions

View File

@ -1175,6 +1175,7 @@ int Process_compareByKey_Base(const Process* p1, const Process* p2, ProcessField
case USER:
return SPACESHIP_NULLSTR(p1->user, p2->user);
default:
CRT_debug("Process_compareByKey_Base() called with key %d", key);
assert(0 && "Process_compareByKey_Base: default key reached"); /* should never be reached */
return SPACESHIP_NUMBER(p1->pid, p2->pid);
}