summaryrefslogtreecommitdiff
path: root/os/netware
diff options
context:
space:
mode:
authorGuenter Knauf <fuankg@apache.org>2010-10-04 15:49:28 +0000
committerGuenter Knauf <fuankg@apache.org>2010-10-04 15:49:28 +0000
commitb59acde98e90e0aeb3ec417559508d478af63e2e (patch)
tree6e07629a5d4e97d45eec572d968e3997d1bb9ae8 /os/netware
parentd77ea5e459afc5d892313fa641a77fea49c64464 (diff)
downloadhttpd-b59acde98e90e0aeb3ec417559508d478af63e2e.tar.gz
Fixed declaration; added return value.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1004298 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/netware')
-rw-r--r--os/netware/util_nw.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/os/netware/util_nw.c b/os/netware/util_nw.c
index b2a1818377..97845d4737 100644
--- a/os/netware/util_nw.c
+++ b/os/netware/util_nw.c
@@ -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;
}