summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormturk <mturk@13f79535-47bb-0310-9956-ffa450edef68>2021-11-21 17:06:30 +0000
committermturk <mturk@13f79535-47bb-0310-9956-ffa450edef68>2021-11-21 17:06:30 +0000
commit3b28e0b0bf65c5a62113aeb3b920b3fe3eceeaff (patch)
tree8cdc3dbda92650a7944945efedd0afd5587a9fb7
parent26492e3692f05992e07235bab7d35cefdda9d0df (diff)
downloadlibapr-3b28e0b0bf65c5a62113aeb3b920b3fe3eceeaff.tar.gz
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
-rw-r--r--time/win32/time.c2
1 files changed, 1 insertions, 1 deletions
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.