From: Stefan Knoblich Date: Wed, 26 Sep 2012 15:44:39 +0000 (+0200) Subject: FreeSWITCH: Add missing semicolon X-Git-Tag: v1.3.0~161 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3df5c5f2f4efa253067946f62e26c46dff596574;p=thirdparty%2Ffreeswitch.git FreeSWITCH: Add missing semicolon Signed-off-by: Stefan Knoblich --- 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); }