Daniel Lehman : wininet/tests: Fix typo in error message.
Module: wine Branch: master Commit: 36bbea9e20391a7687b45d89ca05aeebc94100df URL: https://source.winehq.org/git/wine.git/?a=commit;h=36bbea9e20391a7687b45d89c... Author: Daniel Lehman <dlehman25(a)gmail.com> Date: Wed Aug 21 23:57:15 2019 -0700 wininet/tests: Fix typo in error message. Signed-off-by: Daniel Lehman <dlehman25(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/wininet/tests/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wininet/tests/http.c b/dlls/wininet/tests/http.c index c91b806..6db33e4 100644 --- a/dlls/wininet/tests/http.c +++ b/dlls/wininet/tests/http.c @@ -3976,7 +3976,7 @@ static void test_head_request(int port) len = sizeof(content_length); content_length = -1; ret = HttpQueryInfoA(req.request, HTTP_QUERY_FLAG_NUMBER|HTTP_QUERY_CONTENT_LENGTH, &content_length, &len, 0); - ok(ret, "HttpQueryInfo dailed: %u\n", GetLastError()); + ok(ret, "HttpQueryInfo failed: %u\n", GetLastError()); ok(len == sizeof(DWORD), "len = %u\n", len); ok(content_length == 100, "content_length = %u\n", content_length);
participants (1)
-
Alexandre Julliard