Fix warning: strict prototypes (#14992)
clang: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes]
This commit is contained in:
@@ -226,7 +226,7 @@ static wchar_t *escape_label(const char *in)
|
||||
return out;
|
||||
}
|
||||
|
||||
static HICON load_default_icon()
|
||||
static HICON load_default_icon(void)
|
||||
{
|
||||
HINSTANCE hInstance = GetModuleHandle(NULL);
|
||||
if (!hInstance) {
|
||||
|
||||
Reference in New Issue
Block a user