Commit 4b69b671 authored by Alexandre Julliard's avatar Alexandre Julliard

services: Explicitly mark a qsort() callback funtion cdecl.

parent 7f0272a5
......@@ -322,7 +322,7 @@ static void scmdatabase_remove_service(struct scmdatabase *db, struct service_en
service->entry.next = service->entry.prev = NULL;
}
static int compare_tags(const void *a, const void *b)
static int __cdecl compare_tags(const void *a, const void *b)
{
struct service_entry *service_a = *(struct service_entry **)a;
struct service_entry *service_b = *(struct service_entry **)b;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment