Commit 0fd41648 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

libwine: Use NULL instead of casting 0.

parent e0d1bec9
...@@ -479,7 +479,7 @@ noconv: ...@@ -479,7 +479,7 @@ noconv:
long int atolW( const WCHAR *str ) long int atolW( const WCHAR *str )
{ {
return strtolW( str, (WCHAR **)0, 10 ); return strtolW( str, NULL, 10 );
} }
int atoiW( const WCHAR *str ) int atoiW( const WCHAR *str )
......
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