mirror of https://github.com/xzeldon/htop.git
fix argument type following prototype change in "Invert Process_compare resolution so that superclass matches run first"
This commit is contained in:
parent
86d2931255
commit
b9336af76f
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue