Commit ceb058e6 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

wininet/tests: Remove redundant quotes in an ok() message.

wine_dbgstr_w() already quotes (and escapes) the string.
parent e0407916
......@@ -1736,7 +1736,7 @@ static void test_InternetGetConnectedStateExW(void)
wcscpy(buffer, L"wine");
SetLastError(0xdeadbeef);
res = pInternetGetConnectedStateExW(&flags, buffer, ARRAY_SIZE(buffer), 0);
trace("Internet Connection: Flags 0x%02lx - Name '%s'\n", flags, wine_dbgstr_w(buffer));
trace("Internet Connection: Flags 0x%02lx - Name %s\n", flags, wine_dbgstr_w(buffer));
ok (flags & INTERNET_RAS_INSTALLED, "Missing RAS flag\n");
if(!res) {
DWORD error = GetLastError();
......
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