joes 2004/07/05 14:01:56
Modified: glue/perl/xsbuilder/Apache/Request Apache__Request.h
Log:
Fix G_VOID typo.
Revision Changes Path
1.39 +1 -2
httpd-apreq-2/glue/perl/xsbuilder/Apache/Request/Apache__Request.h
Index: Apache__Request.h
===================================================================
RCS file:
/home/cvs/httpd-apreq-2/glue/perl/xsbuilder/Apache/Request/Apache__Request.h,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- Apache__Request.h 5 Jul 2004 20:59:00 -0000 1.38
+++ Apache__Request.h 5 Jul 2004 21:01:56 -0000 1.39
@@ -200,11 +200,10 @@
do s = apreq_env_read(req->env, APR_BLOCK_READ, READ_BLOCK_SIZE);
while (s == APR_INCOMPLETE);
- if (GIMME_V != GVOID)
+ if (GIMME_V != G_VOID)
XSRETURN_IV(s);
if (s != APR_SUCCESS)
apreq_xs_croak(aTHX_ newHV(), s, "Apache::Request::parse",
"Apache::Request::Error");
-
}