diff options
author | Joe Orton <jorton@apache.org> | 2023-01-11 09:44:46 +0000 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2023-01-11 09:44:46 +0000 |
commit | e67c1792d460fd8f50fec59cbf828fbff748aa5a (patch) | |
tree | f513d6148f1dd21bef580b659aea5d1ae6e03351 /poll/os2/pollset.c | |
parent | 3c446343a88024251027c91cc21609034944ba6e (diff) | |
download | apr-e67c1792d460fd8f50fec59cbf828fbff748aa5a.tar.gz |
Merge r1906594 from trunk:
Fix further strict C99 compliance issue. (fixes #37)
PR: 66408
Submitted by: Sam James <sam gentoo.org>
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.7.x@1906595 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poll/os2/pollset.c')
-rw-r--r-- | poll/os2/pollset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poll/os2/pollset.c b/poll/os2/pollset.c index 2ec848105..87b3c1841 100644 --- a/poll/os2/pollset.c +++ b/poll/os2/pollset.c @@ -308,7 +308,7 @@ APR_DECLARE(apr_status_t) apr_pollset_wakeup(apr_pollset_t *pollset) -APR_DECLARE(const char *) apr_poll_method_defname() +APR_DECLARE(const char *) apr_poll_method_defname(void) { return "select"; } |