mshtml/tests: Fix missing void in empty parameter list.
This commit is contained in:
parent
407f0d9f56
commit
9de1f80999
|
@ -4162,7 +4162,7 @@ static void gecko_installer_workaround(BOOL disable)
|
|||
|
||||
/* Check if Internet Explorer is configured to run in "Enhanced Security Configuration" (aka hardened mode) */
|
||||
/* Note: this code is duplicated in dlls/mshtml/tests/dom.c, dlls/mshtml/tests/script.c and dlls/urlmon/tests/misc.c */
|
||||
static BOOL is_ie_hardened()
|
||||
static BOOL is_ie_hardened(void)
|
||||
{
|
||||
HKEY zone_map;
|
||||
DWORD ie_harden, type, size;
|
||||
|
|
|
@ -1139,7 +1139,7 @@ static void gecko_installer_workaround(BOOL disable)
|
|||
|
||||
/* Check if Internet Explorer is configured to run in "Enhanced Security Configuration" (aka hardened mode) */
|
||||
/* Note: this code is duplicated in dlls/mshtml/tests/dom.c, dlls/mshtml/tests/script.c and dlls/urlmon/tests/misc.c */
|
||||
static BOOL is_ie_hardened()
|
||||
static BOOL is_ie_hardened(void)
|
||||
{
|
||||
HKEY zone_map;
|
||||
DWORD ie_harden, type, size;
|
||||
|
|
Loading…
Reference in New Issue