comctl32: Make constant 'mdays' static.

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alex Henrie 2018-12-03 21:42:48 -07:00 committed by Alexandre Julliard
parent a0ab2a7b0c
commit baf6adfef7

View File

@ -213,7 +213,7 @@ static inline int MONTHCAL_MonthDiff(const SYSTEMTIME *left, const SYSTEMTIME *r
/* January is 1, December is 12 */ /* January is 1, December is 12 */
int MONTHCAL_MonthLength(int month, int year) int MONTHCAL_MonthLength(int month, int year)
{ {
const int mdays[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; static const int mdays[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
/* Wrap around, this eases handling. Getting length only we shouldn't care /* Wrap around, this eases handling. Getting length only we shouldn't care
about year change here cause January and December have about year change here cause January and December have
the same day quantity */ the same day quantity */