Commit c7772a5d authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

advapi32/tests: Fix copy & paste issue (Cppcheck).

parent 06afdda6
...@@ -1136,7 +1136,7 @@ static void test_reg_open_key(void) ...@@ -1136,7 +1136,7 @@ static void test_reg_open_key(void)
ok(error == ERROR_SUCCESS, ok(error == ERROR_SUCCESS,
"Expected RegSetKeySecurity to return success, got error %u\n", error); "Expected RegSetKeySecurity to return success, got error %u\n", error);
bRet = RegSetKeySecurity(hkRoot32, DACL_SECURITY_INFORMATION, sd); error = RegSetKeySecurity(hkRoot32, DACL_SECURITY_INFORMATION, sd);
ok(error == ERROR_SUCCESS, ok(error == ERROR_SUCCESS,
"Expected RegSetKeySecurity to return success, got error %u\n", error); "Expected RegSetKeySecurity to return success, got error %u\n", error);
......
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