On Sat, 2002-07-13 at 04:45, Jeff Trawick wrote: > [EMAIL PROTECTED] writes: > > > brianp 2002/07/13 00:08:41 > > > > Modified: include apr_tables.h > > tables apr_tables.c > > Log: > > Changed apr_table_elts() and apr_is_empty_table() from macros > > to functions to make apr_table_t a fully abstract type > > http_protocol.c: In function `ap_http_header_filter': > http_protocol.c:1561: warning: passing arg 1 of `apr_is_empty_table' from > incompatible pointer type
Thanks Jeff. That line is passing an apr_array_header_t* to the "is-empty-table" function. It only worked before because the macro couldn't do type checking. I'll add an apr_is_empty_array() for use here. --Brian