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

shell32: Use boolean return value in boolean function.

parent cb1242a8
...@@ -183,7 +183,7 @@ static BOOL StrToOleStrNW (LPWSTR lpWide, INT nWide, LPCWSTR lpStrW, INT nStr) ...@@ -183,7 +183,7 @@ static BOOL StrToOleStrNW (LPWSTR lpWide, INT nWide, LPCWSTR lpStrW, INT nStr)
if (lstrcpynW (lpWide, lpStrW, nWide)) if (lstrcpynW (lpWide, lpStrW, nWide))
{ return lstrlenW (lpWide); { return lstrlenW (lpWide);
} }
return 0; return FALSE;
} }
BOOL WINAPI StrToOleStrNAW (LPWSTR lpWide, INT nWide, LPCVOID lpStr, INT nStr) BOOL WINAPI StrToOleStrNAW (LPWSTR lpWide, INT nWide, LPCVOID lpStr, INT nStr)
......
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