rbb 2002/07/07 20:58:32
Modified: hooks apr_hooks.c
Log:
Fix a warning that was added with the symbol renames.
Revision Changes Path
1.44 +1 -1 apr-util/hooks/apr_hooks.c
Index: apr_hooks.c
===================================================================
RCS file: /home/cvs/apr-util/hooks/apr_hooks.c,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- apr_hooks.c 6 Jul 2002 19:44:50 -0000 1.43
+++ apr_hooks.c 8 Jul 2002 03:58:32 -0000 1.44
@@ -380,7 +380,7 @@
APU_DECLARE_NONSTD(void) apr_register_optional_fn(const char *szName,
apr_opt_fn_t *pfn)
{
- return apr_dynamic_fn_register(szName, pfn);
+ apr_dynamic_fn_register(szName, pfn);
}
#if 0