You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2009/03/25 12:33:42 UTC

svn commit: r758229 - /httpd/httpd/trunk/include/mpm_common.h

Author: trawick
Date: Wed Mar 25 11:33:40 2009
New Revision: 758229

URL: http://svn.apache.org/viewvc?rev=758229&view=rev
Log:
dangling semis lead to warnings with Sun Studio

Modified:
    httpd/httpd/trunk/include/mpm_common.h

Modified: httpd/httpd/trunk/include/mpm_common.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/mpm_common.h?rev=758229&r1=758228&r2=758229&view=diff
==============================================================================
--- httpd/httpd/trunk/include/mpm_common.h (original)
+++ httpd/httpd/trunk/include/mpm_common.h Wed Mar 25 11:33:40 2009
@@ -376,20 +376,20 @@
 AP_DECLARE_HOOK(int, drop_privileges, (apr_pool_t * pchild, server_rec * s))
 
 /* pass control to the MPM */
-AP_DECLARE_HOOK(int, mpm, (apr_pool_t *pconf, apr_pool_t *plog, server_rec *s));
+AP_DECLARE_HOOK(int, mpm, (apr_pool_t *pconf, apr_pool_t *plog, server_rec *s))
 
 /* implement the mpm query function */
-AP_DECLARE_HOOK(apr_status_t, mpm_query, (int query_code, int *result));
+AP_DECLARE_HOOK(apr_status_t, mpm_query, (int query_code, int *result))
 
 /* get pid of child by index */
-AP_DECLARE_HOOK(pid_t, mpm_get_child_pid, (int childnum));
+AP_DECLARE_HOOK(pid_t, mpm_get_child_pid, (int childnum))
 
 /* child specified by index has been killed */
-AP_DECLARE_HOOK(apr_status_t, mpm_note_child_killed, (int childnum));
+AP_DECLARE_HOOK(apr_status_t, mpm_note_child_killed, (int childnum))
 
 /* register the specified callback */
 AP_DECLARE_HOOK(apr_status_t, mpm_register_timed_callback,
-                (apr_time_t t, ap_mpm_callback_fn_t *cbfn, void *baton));
+                (apr_time_t t, ap_mpm_callback_fn_t *cbfn, void *baton))
 
 #ifdef __cplusplus
 }