summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMladen Turk <mturk@apache.org>2021-11-21 17:06:30 +0000
committerMladen Turk <mturk@apache.org>2021-11-21 17:06:30 +0000
commit9579793e61806f2574aabe653e3aac5207dca25f (patch)
tree8cdc3dbda92650a7944945efedd0afd5587a9fb7
parent1ad5de6e4db03df04db7022661c0d01061e26ad8 (diff)
downloadapr-9579793e61806f2574aabe653e3aac5207dca25f.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.