You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rj...@apache.org on 2016/08/10 10:20:49 UTC

svn commit: r1755710 - /apr/apr/branches/1.6.x/poll/unix/wakeup.c

Author: rjung
Date: Wed Aug 10 10:20:48 2016
New Revision: 1755710

URL: http://svn.apache.org/viewvc?rev=1755710&view=rev
Log:
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.

Modified:
    apr/apr/branches/1.6.x/poll/unix/wakeup.c

Modified: apr/apr/branches/1.6.x/poll/unix/wakeup.c
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.6.x/poll/unix/wakeup.c?rev=1755710&r1=1755709&r2=1755710&view=diff
==============================================================================
--- apr/apr/branches/1.6.x/poll/unix/wakeup.c (original)
+++ apr/apr/branches/1.6.x/poll/unix/wakeup.c Wed Aug 10 10:20:48 2016
@@ -56,7 +56,7 @@ apr_status_t apr_poll_close_wakeup_pipe(
         rv1 = file_socket_pipe_close(wakeup_pipe[1]);
         wakeup_pipe[1] = NULL;
     }
-    return rv0 ? rv0 : rv1
+    return rv0 ? rv0 : rv1;
 }
 
 #else /* !WIN32 */