libwine: Use NULL instead of casting 0.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2021-03-02 20:18:06 +01:00 committed by Alexandre Julliard
parent e0d1bec916
commit 0fd41648e3
1 changed files with 1 additions and 1 deletions

View File

@ -479,7 +479,7 @@ noconv:
long int atolW( const WCHAR *str )
{
return strtolW( str, (WCHAR **)0, 10 );
return strtolW( str, NULL, 10 );
}
int atoiW( const WCHAR *str )