mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
Consistently use NULL, as suggested by Paolo Devotee.
svn path=/trunk/; revision=38534
This commit is contained in:
@@ -208,7 +208,7 @@ IntGetCodePageEntry(UINT CodePage)
|
||||
sizeof(CodePage) / sizeof(WCHAR)))
|
||||
{
|
||||
/* Last error is set by GetLocaleInfoW. */
|
||||
return 0;
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
else if (CodePage == CP_MACCP)
|
||||
@@ -219,7 +219,7 @@ IntGetCodePageEntry(UINT CodePage)
|
||||
sizeof(CodePage) / sizeof(WCHAR)))
|
||||
{
|
||||
/* Last error is set by GetLocaleInfoW. */
|
||||
return 0;
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user