wordpad: Make qsort callback function cdecl.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2021-01-16 11:45:39 +01:00
parent 90ac46fe33
commit 04f0729d94
1 changed files with 1 additions and 1 deletions

View File

@ -657,7 +657,7 @@ static int CALLBACK enum_font_proc(const LOGFONTW *lpelfe, const TEXTMETRICW *lp
return 1;
}
static int fonts_desc_compare(const void *a, const void *b)
static int __cdecl fonts_desc_compare(const void *a, const void *b)
{
const struct font_desc *left = a, *right = b;
return lstrcmpiW(left->name, right->name);