Module: wine Branch: master Commit: a5aab7fae69f818f4c90c372ebc332e1ce9930ed URL: http://source.winehq.org/git/wine.git/?a=commit;h=a5aab7fae69f818f4c90c372eb...
Author: Paul Vriens paul.vriens.wine@gmail.com Date: Wed Aug 8 11:28:06 2007 +0200
advapi32/tests: Fix typo.
---
dlls/advapi32/tests/security.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/advapi32/tests/security.c b/dlls/advapi32/tests/security.c index a30faf2..1595930 100644 --- a/dlls/advapi32/tests/security.c +++ b/dlls/advapi32/tests/security.c @@ -1431,7 +1431,7 @@ static void test_granted_access(HANDLE handle, ACCESS_MASK access, int line) status = pNtQueryObject( handle, ObjectBasicInformation, &obj_info, sizeof(obj_info), NULL ); ok_(__FILE__, line)(!status, "NtQueryObject with err: %08x\n", status); - ok_(__FILE__, line)(obj_info.GrantedAccess == access, "Gratned access should " + ok_(__FILE__, line)(obj_info.GrantedAccess == access, "Granted access should " "be 0x%08x, instead of 0x%08x\n", access, obj_info.GrantedAccess); }