Commit 5206db80 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ole32/tests: Make sure to use a return value (LLVM/Clang).

parent efb3c48d
......@@ -1657,6 +1657,7 @@ static void test_default_handler(void)
sizel.cx = sizel.cy = 0;
hr = IOleObject_SetExtent(pObject, DVASPECT_CONTENT, &sizel);
ok(hr == OLE_E_NOTRUNNING, "IOleObject_SetExtent should have returned OLE_E_NOTRUNNING instead of 0x%08x\n", hr);
hr = IOleObject_SetHostNames(pObject, wszHostName, NULL);
ok_ole_success(hr, "IOleObject_SetHostNames");
......
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