]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fixed declaration; added return value.
authorGuenter Knauf <fuankg@apache.org>
Mon, 4 Oct 2010 15:49:28 +0000 (15:49 +0000)
committerGuenter Knauf <fuankg@apache.org>
Mon, 4 Oct 2010 15:49:28 +0000 (15:49 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1004298 13f79535-47bb-0310-9956-ffa450edef68

os/netware/util_nw.c

index b2a1818377650e16eea975b7bc61b64f32c0c790..97845d4737407843587e8694ba673eb6322a3103 100644 (file)
@@ -47,20 +47,20 @@ int _NonAppCheckUnload(void)
 }
 
 /* down server event callback */
-void ap_down_server_cb(void *, void *)
+void ap_down_server_cb(void *a, void *b)
 {
     nlmUnloadSignaled(0);
     return;
 }
 
 /* Required place holder event callback */
-void ap_dummy_cb(void *, void *)
+void ap_dummy_cb(void *a, void *b)
 {
     return;
 }
 
 /* destroy callback resources */
-void ap_cb_destroy(void *)
+void ap_cb_destroy(void *a)
 {
     /* cleanup down event notification */
     UnRegisterEventNotification(eh);
@@ -107,5 +107,6 @@ int _NonAppStart
     /* clean-up */
     NXVmRegisterExitHandler(ap_cb_destroy, NULL);
 
+    return 0;
 }