Consistently use NULL, as suggested by Paolo Devotee.

svn path=/trunk/; revision=38534
This commit is contained in:
Dmitry Gorbachev
2009-01-03 15:50:55 +00:00
parent 790283c9de
commit fc04035227
+2 -2
View File
@@ -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;
}
}