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

dsound: Make a qsort() callback function cdecl.

parent 08b569d5
......@@ -81,7 +81,7 @@ static ULONG WINAPI IDirectSoundNotifyImpl_Release(IDirectSoundNotify *iface)
return ref;
}
static int notify_compar(const void *l, const void *r)
static int __cdecl notify_compar(const void *l, const void *r)
{
const DSBPOSITIONNOTIFY *left = l;
const DSBPOSITIONNOTIFY *right = r;
......
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