From df97a0e85dffa4817ca20c697923b503a555a442 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Mon, 30 Mar 2015 10:13:44 +0200 Subject: [PATCH] winhttp/tests: Test the correct return code. --- dlls/winhttp/tests/winhttp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winhttp/tests/winhttp.c b/dlls/winhttp/tests/winhttp.c index 1423cef6f62..ac944f2f569 100644 --- a/dlls/winhttp/tests/winhttp.c +++ b/dlls/winhttp/tests/winhttp.c @@ -3043,7 +3043,7 @@ static void test_IWinHttpRequest(void) IWinHttpRequest_Release( req ); pos.QuadPart = 0; - IStream_Seek( stream, pos, STREAM_SEEK_SET, NULL ); + hr = IStream_Seek( stream, pos, STREAM_SEEK_SET, NULL ); ok( hr == S_OK, "got %08x\n", hr ); buf[0] = 0;