mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 08:00:24 +00:00
Consistently use NULL, as suggested by Paolo Devotee.
svn path=/trunk/; revision=38534
This commit is contained in:
parent
790283c9de
commit
fc04035227
1 changed files with 2 additions and 2 deletions
|
@ -208,7 +208,7 @@ IntGetCodePageEntry(UINT CodePage)
|
||||||
sizeof(CodePage) / sizeof(WCHAR)))
|
sizeof(CodePage) / sizeof(WCHAR)))
|
||||||
{
|
{
|
||||||
/* Last error is set by GetLocaleInfoW. */
|
/* Last error is set by GetLocaleInfoW. */
|
||||||
return 0;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (CodePage == CP_MACCP)
|
else if (CodePage == CP_MACCP)
|
||||||
|
@ -219,7 +219,7 @@ IntGetCodePageEntry(UINT CodePage)
|
||||||
sizeof(CodePage) / sizeof(WCHAR)))
|
sizeof(CodePage) / sizeof(WCHAR)))
|
||||||
{
|
{
|
||||||
/* Last error is set by GetLocaleInfoW. */
|
/* Last error is set by GetLocaleInfoW. */
|
||||||
return 0;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue