fix argument type following prototype change in "Invert Process_compare resolution so that superclass matches run first"

This commit is contained in:
Dominik Hassler 2020-12-23 14:21:53 +00:00 committed by cgzones
parent 86d2931255
commit b9336af76f
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ void SolarisProcess_writeField(const Process* this, RichString* str, ProcessFiel
RichString_appendWide(str, attr, buffer);
}
long SolarisProcess_compareByKey(const void* v1, const void* v2, ProcessField key) {
long SolarisProcess_compareByKey(const Process* v1, const Process* v2, ProcessField key) {
const SolarisProcess* p1 = (const SolarisProcess*)v1;
const SolarisProcess* p2 = (const SolarisProcess*)v2;