From 8a4b7f9f22ac74605384784b507b5c8f2a9e3274 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Sat, 6 Aug 2011 12:51:11 +0100 Subject: [PATCH] comctl32: void functions should not return a value. --- dlls/comctl32/monthcal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/comctl32/monthcal.c b/dlls/comctl32/monthcal.c index 27d2cf0ee5b..2ad4812496b 100644 --- a/dlls/comctl32/monthcal.c +++ b/dlls/comctl32/monthcal.c @@ -481,13 +481,13 @@ static inline void MONTHCAL_GetMonth(SYSTEMTIME *date, INT months) /* properly updates date to point on next month */ static inline void MONTHCAL_GetNextMonth(SYSTEMTIME *date) { - return MONTHCAL_GetMonth(date, 1); + MONTHCAL_GetMonth(date, 1); } /* properly updates date to point on prev month */ static inline void MONTHCAL_GetPrevMonth(SYSTEMTIME *date) { - return MONTHCAL_GetMonth(date, -1); + MONTHCAL_GetMonth(date, -1); } /* Returns full date for a first currently visible day */