You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rp...@apache.org on 2009/12/21 08:59:49 UTC

svn commit: r892718 - /apr/apr/trunk/poll/unix/pollset.c

Author: rpluem
Date: Mon Dec 21 07:59:48 2009
New Revision: 892718

URL: http://svn.apache.org/viewvc?rev=892718&view=rev
Log:
* Add missing declarations.

Modified:
    apr/apr/trunk/poll/unix/pollset.c

Modified: apr/apr/trunk/poll/unix/pollset.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/poll/unix/pollset.c?rev=892718&r1=892717&r2=892718&view=diff
==============================================================================
--- apr/apr/trunk/poll/unix/pollset.c (original)
+++ apr/apr/trunk/poll/unix/pollset.c Mon Dec 21 07:59:48 2009
@@ -129,6 +129,9 @@
 
 static apr_status_t close_wakeup_pipe(apr_pollset_t *pollset)
 {
+    apr_status_t rv0;
+    apr_status_t rv1;
+
     /* Close both sides of the wakeup pipe */
     if (pollset->wakeup_pipe[0]) {
         rv0 = apr_file_close(pollset->wakeup_pipe[0]);