summaryrefslogtreecommitdiffstats
path: root/cpukit/httpd/emfdb.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/emfdb.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/emfdb.c')
-rw-r--r--cpukit/httpd/emfdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/httpd/emfdb.c b/cpukit/httpd/emfdb.c
index ae3e9a362e..708b51106b 100644
--- a/cpukit/httpd/emfdb.c
+++ b/cpukit/httpd/emfdb.c
@@ -63,7 +63,7 @@ int dbRegisterDBSchema(dbTable_t *pTableRegister)
/*
* Bump up the size of the table array
*/
- tid = hAllocEntry((void***) &dbListTables,
+ tid = hAllocEntry((void*) &dbListTables,
&dbMaxTables, sizeof(dbTable_t));
/*
@@ -167,7 +167,7 @@ void dbClose(int did)
* Free the table
*/
bfreeSafe(B_L, pTable);
- hFree((void ***) &dbListTables, table);
+ hFree((void *) &dbListTables, table);
}
}