From ed5715eb3994d08fdf81001dabdb39b171a308ac Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Wed, 29 Apr 2015 12:46:21 -0300 Subject: res_sorcery_config: Fix build issue due to syntax error. Change-Id: Ic8322f04e37842848ad72cf2871bd0378f67c4ac --- res/res_sorcery_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'res/res_sorcery_config.c') diff --git a/res/res_sorcery_config.c b/res/res_sorcery_config.c index deb2ffadd..b6ad0ccf5 100644 --- a/res/res_sorcery_config.c +++ b/res/res_sorcery_config.c @@ -297,7 +297,7 @@ static void sorcery_config_internal_load(void *data, const struct ast_sorcery *s /* Confirm an object with this id does not already exist in the bucket. * If it exists, however, the configuration is invalid so stop * processing and destroy it. */ - obj = ao2_find(objects, id, OBJ_KEY; + obj = ao2_find(objects, id, OBJ_KEY); if (obj) { ast_log(LOG_ERROR, "Config file '%s' could not be loaded; configuration contains a duplicate object: '%s' of type '%s'\n", -- cgit v1.2.3