Skip to content
Snippets Groups Projects
Commit ed5715eb authored by Joshua Colp's avatar Joshua Colp
Browse files

res_sorcery_config: Fix build issue due to syntax error.

Change-Id: Ic8322f04e37842848ad72cf2871bd0378f67c4ac
parent 48d5971a
No related branches found
No related tags found
No related merge requests found
......@@ -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",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment