Commit 04f0729d authored by Alexandre Julliard's avatar Alexandre Julliard

wordpad: Make qsort callback function cdecl.

parent 90ac46fe
......@@ -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);
......
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