Commit 9de1f809 authored by Alasdair Sinclair's avatar Alasdair Sinclair Committed by Alexandre Julliard

mshtml/tests: Fix missing void in empty parameter list.

parent 407f0d9f
...@@ -4162,7 +4162,7 @@ static void gecko_installer_workaround(BOOL disable) ...@@ -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) */ /* 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 */ /* 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; HKEY zone_map;
DWORD ie_harden, type, size; DWORD ie_harden, type, size;
......
...@@ -1139,7 +1139,7 @@ static void gecko_installer_workaround(BOOL disable) ...@@ -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) */ /* 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 */ /* 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; HKEY zone_map;
DWORD ie_harden, type, size; DWORD ie_harden, type, size;
......
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