shell32: Use boolean return value in boolean function.

This commit is contained in:
André Hentschel 2014-04-28 20:01:45 +02:00 committed by Alexandre Julliard
parent cb1242a8f2
commit 5c73a4e629
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ static BOOL StrToOleStrNW (LPWSTR lpWide, INT nWide, LPCWSTR lpStrW, INT nStr)
if (lstrcpynW (lpWide, lpStrW, nWide))
{ return lstrlenW (lpWide);
}
return 0;
return FALSE;
}
BOOL WINAPI StrToOleStrNAW (LPWSTR lpWide, INT nWide, LPCVOID lpStr, INT nStr)