summaryrefslogtreecommitdiff
path: root/poll
diff options
context:
space:
mode:
authorRainer Jung <rjung@apache.org>2016-08-10 10:20:48 +0000
committerRainer Jung <rjung@apache.org>2016-08-10 10:20:48 +0000
commit0c29b4cb2aad7b32690b91d13424b9522c8a3721 (patch)
tree05d39311158ac5565d56d581f46b0a1fc83e2c6b /poll
parent022a538fb41dff5b7348226a4b947b4b49479a2b (diff)
downloadapr-0c29b4cb2aad7b32690b91d13424b9522c8a3721.tar.gz
fix missing semicolon
Backport of r901088 from trunk. It was an addition to r899905, which itself was backported to 1.6.x in r1736521, but r901088 was forgotten. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.6.x@1755710 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poll')
-rw-r--r--poll/unix/wakeup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/poll/unix/wakeup.c b/poll/unix/wakeup.c
index a0a291267..f8ea06048 100644
--- a/poll/unix/wakeup.c
+++ b/poll/unix/wakeup.c
@@ -56,7 +56,7 @@ apr_status_t apr_poll_close_wakeup_pipe(apr_file_t **wakeup_pipe)
rv1 = file_socket_pipe_close(wakeup_pipe[1]);
wakeup_pipe[1] = NULL;
}
- return rv0 ? rv0 : rv1
+ return rv0 ? rv0 : rv1;
}
#else /* !WIN32 */