From 9579793e61806f2574aabe653e3aac5207dca25f Mon Sep 17 00:00:00 2001 From: Mladen Turk Date: Sun, 21 Nov 2021 17:06:30 +0000 Subject: Trivial fix. void functio has no return value git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.7.x@1895238 13f79535-47bb-0310-9956-ffa450edef68 --- time/win32/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/time/win32/time.c b/time/win32/time.c index eb1e6f14c..ac75b7b6f 100644 --- a/time/win32/time.c +++ b/time/win32/time.c @@ -55,7 +55,7 @@ static void SystemTimeToAprExpTime(apr_time_exp_t *xt, SYSTEMTIME *tm) {0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334}; if (tm->wMonth < 1 || tm->wMonth > 12) - return APR_EBADDATE; + return; /* Note; the caller is responsible for filling in detailed tm_usec, * tm_gmtoff and tm_isdst data when applicable. -- cgit v1.2.1