Commit ac1628c9 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

wininet: Fix misleading indentation.

parent 3e2f4430
...@@ -2887,9 +2887,10 @@ BOOL WINAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption, ...@@ -2887,9 +2887,10 @@ BOOL WINAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption,
} else if(dwBufferLength != sizeof(ULONG)) { } else if(dwBufferLength != sizeof(ULONG)) {
SetLastError(ERROR_INTERNET_BAD_OPTION_LENGTH); SetLastError(ERROR_INTERNET_BAD_OPTION_LENGTH);
ret = FALSE; ret = FALSE;
} else } else {
TRACE("INTERNET_OPTION_ERROR_MASK: %x\n", *(ULONG*)lpBuffer); TRACE("INTERNET_OPTION_ERROR_MASK: %x\n", *(ULONG*)lpBuffer);
lpwhh->ErrorMask = *(ULONG*)lpBuffer; lpwhh->ErrorMask = *(ULONG*)lpBuffer;
}
} }
break; break;
case INTERNET_OPTION_PROXY: case INTERNET_OPTION_PROXY:
......
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