[asterisk-commits] res sorcery config: Fix build issue due to syntax error. (asterisk[master])

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Apr 29 10:50:42 CDT 2015


Joshua Colp has submitted this change and it was merged.

Change subject: res_sorcery_config: Fix build issue due to syntax error.
......................................................................


res_sorcery_config: Fix build issue due to syntax error.

Change-Id: Ic8322f04e37842848ad72cf2871bd0378f67c4ac
---
M res/res_sorcery_config.c
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Joshua Colp: Looks good to me, approved; Verified
  Corey Farrell: Looks good to me, but someone else must approve



diff --git a/res/res_sorcery_config.c b/res/res_sorcery_config.c
index deb2ffa..b6ad0cc 100644
--- a/res/res_sorcery_config.c
+++ b/res/res_sorcery_config.c
@@ -297,7 +297,7 @@
 		/*  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",

-- 
To view, visit https://gerrit.asterisk.org/290
To unsubscribe, visit https://gerrit.asterisk.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ic8322f04e37842848ad72cf2871bd0378f67c4ac
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Owner: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Corey Farrell <git at cfware.com>
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>



More information about the asterisk-commits mailing list