From 3df5c5f2f4efa253067946f62e26c46dff596574 Mon Sep 17 00:00:00 2001 From: Stefan Knoblich Date: Wed, 26 Sep 2012 17:44:39 +0200 Subject: [PATCH] FreeSWITCH: Add missing semicolon Signed-off-by: Stefan Knoblich --- src/switch_core_sqldb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_core_sqldb.c b/src/switch_core_sqldb.c index 5a76d0e1ae..d77b432c90 100644 --- a/src/switch_core_sqldb.c +++ b/src/switch_core_sqldb.c @@ -2411,7 +2411,7 @@ switch_status_t switch_core_sqldb_start(switch_memory_pool_t *pool, switch_bool_ { switch_cache_db_handle_t *db = NULL; - switch_core_persist_db_handle(&db) + switch_core_persist_db_handle(&db); switch_cache_db_test_reactive(db, "select hostname from aliases", "DROP TABLE aliases", create_alias_sql); switch_cache_db_release_db_handle(&db); }