From b9336af76fa42ff807da049075fb21e9ce46146f Mon Sep 17 00:00:00 2001 From: Dominik Hassler Date: Wed, 23 Dec 2020 14:21:53 +0000 Subject: fix argument type following prototype change in "Invert Process_compare resolution so that superclass matches run first" --- solaris/SolarisProcess.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'solaris') diff --git a/solaris/SolarisProcess.c b/solaris/SolarisProcess.c index e3597360..e691494e 100644 --- a/solaris/SolarisProcess.c +++ b/solaris/SolarisProcess.c @@ -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; -- cgit v1.2.3