ole32/tests: Fix return value trace.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2019-12-12 14:38:59 +03:00 committed by Alexandre Julliard
parent d34ec97ad5
commit 3cf31c8680
1 changed files with 2 additions and 1 deletions

View File

@ -1014,7 +1014,8 @@ static void test_set_clipboard(void)
test_cf_dataobject(data_cmpl);
test_enum_fmtetc(data_cmpl);
ok(OleSetClipboard(NULL) == S_OK, "failed to clear clipboard, hr = 0x%08x\n", hr);
hr = OleSetClipboard(NULL);
ok(hr == S_OK, "failed to clear clipboard, hr = 0x%08x.\n", hr);
test_no_cf_dataobject();
test_enum_fmtetc(NULL);