Commit c8426495 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

wininet: Use boolean return value in boolean function.

parent 1776ded8
...@@ -1765,7 +1765,7 @@ BOOL WINAPI InternetCrackUrlW(LPCWSTR lpszUrl_orig, DWORD dwUrlLength_orig, DWOR ...@@ -1765,7 +1765,7 @@ BOOL WINAPI InternetCrackUrlW(LPCWSTR lpszUrl_orig, DWORD dwUrlLength_orig, DWOR
if(!found_colon){ if(!found_colon){
SetLastError(ERROR_INTERNET_UNRECOGNIZED_SCHEME); SetLastError(ERROR_INTERNET_UNRECOGNIZED_SCHEME);
return 0; return FALSE;
} }
lpUC->nScheme = INTERNET_SCHEME_UNKNOWN; lpUC->nScheme = INTERNET_SCHEME_UNKNOWN;
......
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