You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/10/13 15:51:47 UTC

svn commit: r824764 - /commons/sandbox/runtime/trunk/src/main/native/os/win32/pipe.c

Author: mturk
Date: Tue Oct 13 13:51:46 2009
New Revision: 824764

URL: http://svn.apache.org/viewvc?rev=824764&view=rev
Log:
Fix typo

Modified:
    commons/sandbox/runtime/trunk/src/main/native/os/win32/pipe.c

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/pipe.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/pipe.c?rev=824764&r1=824763&r2=824764&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/pipe.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/pipe.c Tue Oct 13 13:51:46 2009
@@ -30,7 +30,7 @@
  */
 
 static volatile LONG pipe_id = 0;
-static apr_status_t create_socket_pipe(SOCKET *rd, SOCKET *wr)
+static int create_socket_pipe(SOCKET *rd, SOCKET *wr)
 {
     FD_SET rs;
     SOCKET ls;