summaryrefslogtreecommitdiffstats
path: root/cpukit/httpd/ejparse.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2004-03-05 18:14:27 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2004-03-05 18:14:27 +0000
commitbfb4c5478f622c22b89f96cfb80818267e7dbb12 (patch)
treefb7c2d1d1dc53f6ce224daebc5ecc58c8a1b523e /cpukit/httpd/ejparse.c
parent2004-03-05 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-bfb4c5478f622c22b89f96cfb80818267e7dbb12.tar.bz2
2004-03-05 Joel Sherrill <joel@OARcorp.com>
* libnetworking/rtems_webserver/ejparse.c, libnetworking/rtems_webserver/emfdb.c, libnetworking/rtems_webserver/sock.c, libnetworking/rtems_webserver/socket.c, libnetworking/rtems_webserver/sym.c, libnetworking/rtems_webserver/webs.c, libnetworking/rtems_webserver/websuemf.c: Remove warnings.
Diffstat (limited to 'cpukit/httpd/ejparse.c')
-rw-r--r--cpukit/httpd/ejparse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/httpd/ejparse.c b/cpukit/httpd/ejparse.c
index 383984e88f..fdbb9c1d8a 100644
--- a/cpukit/httpd/ejparse.c
+++ b/cpukit/httpd/ejparse.c
@@ -60,7 +60,7 @@ int ejOpenEngine(sym_fd_t variables, sym_fd_t functions)
ej_t *ep;
int eid, vid;
- if ((eid = hAllocEntry((void***) &ejHandles, &ejMax, sizeof(ej_t))) < 0) {
+ if ((eid = hAllocEntry((void*) &ejHandles, &ejMax, sizeof(ej_t))) < 0) {
return -1;
}
ep = ejHandles[eid];
@@ -72,7 +72,7 @@ int ejOpenEngine(sym_fd_t variables, sym_fd_t functions)
* declarations so we use hAlloc to manage a list of variable tables.
*/
if ((vid = hAlloc((void***) &ep->variables)) < 0) {
- ejMax = hFree((void***) &ejHandles, ep->eid);
+ ejMax = hFree((void*) &ejHandles, ep->eid);
return -1;
}
if (vid >= ep->variableMax) {
@@ -142,7 +142,7 @@ void ejCloseEngine(int eid)
symClose(ep->functions);
}
- ejMax = hFree((void***) &ejHandles, ep->eid);
+ ejMax = hFree((void*) &ejHandles, ep->eid);
bfree(B_L, ep);
}