forgot a t

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1304 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale
2006-04-30 17:54:05 +00:00
parent 14fee78470
commit 7bacd1a0ad
4 changed files with 12 additions and 12 deletions
@@ -140,8 +140,8 @@ struct fileio_obj {
struct db_obj {
switch_memory_pool_t *pool;
switch_core_db *db;
switch_core_db_stmt *stmt;
switch_core_db_t *db;
switch_core_db_stmt_t *stmt;
char *dbname;
char code_buffer[2048];
JSContext *cx;
@@ -1242,7 +1242,7 @@ JSClass fileio_class = {
static JSBool db_construct(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
{
switch_memory_pool_t *pool;
switch_core_db *db;
switch_core_db_t *db;
struct db_obj *dbo;
if (argc > 0) {