stas 2004/06/01 20:34:33
Modified: xs/APR/Socket APR__Socket.h
Log:
use the correct type apr_size_t instead of int
Revision Changes Path
1.10 +1 -1 modperl-2.0/xs/APR/Socket/APR__Socket.h
Index: APR__Socket.h
===================================================================
RCS file: /home/cvs/modperl-2.0/xs/APR/Socket/APR__Socket.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -u -r1.9 -r1.10
--- APR__Socket.h 8 May 2004 01:28:25 -0000 1.9
+++ APR__Socket.h 2 Jun 2004 03:34:32 -0000 1.10
@@ -14,7 +14,7 @@
*/
static MP_INLINE
-SV *mpxs_APR__Socket_recv(pTHX_ apr_socket_t *socket, int len)
+SV *mpxs_APR__Socket_recv(pTHX_ apr_socket_t *socket, apr_size_t len)
{
SV *buf = NEWSV(0, len);
apr_status_t rc = apr_socket_recv(socket, SvPVX(buf), &len);