Fix type of os_is_winxp_or_lower function (fixes #2135)

This commit is contained in:
def 2020-04-12 10:23:08 +02:00
parent e6d4fe4650
commit 4c00e4533c

View file

@ -3247,7 +3247,7 @@ void shell_execute(const char *file)
#endif
}
int os_is_winxp_or_lower(unsigned int major, unsigned int minor)
int os_is_winxp_or_lower()
{
#if defined(CONF_FAMILY_WINDOWS)
static const DWORD WINXP_MAJOR = 5;