summaryrefslogtreecommitdiffstats
path: root/cpukit/httpd/webs.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/webs.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/webs.c')
-rw-r--r--cpukit/httpd/webs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/httpd/webs.c b/cpukit/httpd/webs.c
index ae6730dfb2..9073fe8b7c 100644
--- a/cpukit/httpd/webs.c
+++ b/cpukit/httpd/webs.c
@@ -1861,7 +1861,7 @@ int websAlloc(int sid)
/*
* Allocate a new handle for this connection
*/
- if ((wid = hAllocEntry((void***) &webs, &websMax,
+ if ((wid = hAllocEntry((void*) &webs, &websMax,
sizeof(struct websRec))) < 0) {
return -1;
}
@@ -1972,7 +1972,7 @@ void websFree(webs_t wp)
ringqClose(&wp->header);
}
- websMax = hFree((void***) &webs, wp->wid);
+ websMax = hFree((void*) &webs, wp->wid);
bfree(B_L, wp);
a_assert(websMax >= 0);
}