mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
advapi32/tests: Add the trailing '\n' to an ok() call.
This commit is contained in:
parent
e5e261f104
commit
269cb45f25
1 changed files with 1 additions and 1 deletions
|
@ -950,7 +950,7 @@ static void test_queryconfig2(void)
|
|||
ret = pQueryServiceConfig2A(svc_handle, SERVICE_CONFIG_DESCRIPTION,buffer,sizeof(SERVICE_DESCRIPTIONA),&needed);
|
||||
ok(ret, "expected QueryServiceConfig2A to succeed\n");
|
||||
ok(needed == sizeof(SERVICE_DESCRIPTIONA), "expected needed to be %d, got %d\n", sizeof(SERVICE_DESCRIPTIONA), needed);
|
||||
ok(!pConfig->lpDescription, "expected lpDescription to be NULL, got %p", pConfig->lpDescription);
|
||||
ok(!pConfig->lpDescription, "expected lpDescription to be NULL, got %p\n", pConfig->lpDescription);
|
||||
|
||||
SetLastError(0xdeadbeef);
|
||||
needed = 0;
|
||||
|
|
Loading…
Reference in a new issue