Module: wine Branch: master Commit: d2915c0f99555e2becc1568c1c27d9e8ac63640e URL: http://source.winehq.org/git/wine.git/?a=commit;h=d2915c0f99555e2becc1568c1c...
Author: Alasdair Sinclair alasdairs@dsl.pipex.com Date: Sun Jan 25 22:27:04 2009 +0000
advapi32/tests: Fix missing void in empty parameter list.
---
dlls/advapi32/tests/security.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/advapi32/tests/security.c b/dlls/advapi32/tests/security.c index 8e8728a..260ebf5 100644 --- a/dlls/advapi32/tests/security.c +++ b/dlls/advapi32/tests/security.c @@ -1351,7 +1351,7 @@ struct well_known_sid_value /* 74 */ {TRUE, "S-1-5-22"}, {FALSE, "S-1-5-21-12-23-34-45-56-521"}, {TRUE, "S-1-5-32-573"} };
-static void test_CreateWellKnownSid() +static void test_CreateWellKnownSid(void) { SID_IDENTIFIER_AUTHORITY ident = { SECURITY_NT_AUTHORITY }; PSID domainsid; @@ -2564,7 +2564,7 @@ static void test_ConvertStringSecurityDescriptor(void) "Expected ERROR_INVALID_ACL or ERROR_INVALID_SID, got %d\n", GetLastError()); }
-static void test_ConvertSecurityDescriptorToString() +static void test_ConvertSecurityDescriptorToString(void) { SECURITY_DESCRIPTOR desc; SECURITY_INFORMATION sec_info = OWNER_SECURITY_INFORMATION|GROUP_SECURITY_INFORMATION|DACL_SECURITY_INFORMATION|SACL_SECURITY_INFORMATION;