On Sat, 2011-09-10 at 13:26 +0200, Joachim Zobel wrote: > apr_bucket *end = xml2_make_start_bucket(b); > ap_assert(end == bn->end); >
This was caused by a missing function declaration for xml2_make_start_bucket in the calling file. I had overlooked the "implicitely converting pointer type from int" warning, that resulted from gcc assuming the function to return an int. Sincerely, Joachim