trawick 01/06/07 05:11:15
Modified: include apr_buckets.h
Log:
fix a typo in the definition of apr_bucket_read()
(Greg must be using Ryan's compiler)
Revision Changes Path
1.96 +1 -1 apr-util/include/apr_buckets.h
Index: apr_buckets.h
===================================================================
RCS file: /home/cvs/apr-util/include/apr_buckets.h,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- apr_buckets.h 2001/06/07 10:13:30 1.95
+++ apr_buckets.h 2001/06/07 12:11:12 1.96
@@ -796,7 +796,7 @@
* @param block Whether the read function blocks
* @deffunc apr_status_t apr_bucket_read(apr_bucket *e, const char **str,
apr_size_t *len, apr_read_type_e block)
*/
-#define apr_bucket_read(e,str,len,block) (e)e->type->read(e, str, len, block)
+#define apr_bucket_read(e,str,len,block) (e)->type->read(e, str, len, block)
/**
* Setaside data so that stack data is not destroyed on returning from