msvcrt: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2013-10-10 21:52:44 +02:00 committed by Alexandre Julliard
parent afc0803df7
commit f6677602e3

View file

@ -41,7 +41,7 @@ static const int MonthLengths[2][12] =
{ 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
};
static inline int IsLeapYear(int Year)
static inline BOOL IsLeapYear(int Year)
{
return Year % 4 == 0 && (Year % 100 != 0 || Year % 400 == 0);
}