summaryrefslogtreecommitdiff
path: root/main/cel.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2013-09-06 19:26:48 +0000
committerRichard Mudgett <rmudgett@digium.com>2013-09-06 19:26:48 +0000
commitf5ae5e27c83e7ada24d9c523fc4271a6e4ee9ef3 (patch)
treeaf7601283b0db1e0e4831e9d86f02e7ef685de17 /main/cel.c
parent53dbe10f5c46c7c6b7899f25af356b19ecd66416 (diff)
astobj2: Add warn unused attribute to some functions.
* Fixed resulting warnings with improper use of ao2_global_obj_replace(). * Made a couple uses of ao2_global_obj_replace_unref(x, NULL) into the equivalent and more appropriate ao2_global_obj_release() call. ........ Merged revisions 398533 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@398557 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/cel.c')
-rw-r--r--main/cel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/cel.c b/main/cel.c
index 6d63bf5f8..f4296f0dd 100644
--- a/main/cel.c
+++ b/main/cel.c
@@ -1503,7 +1503,7 @@ int ast_cel_engine_init(void)
*/
if (!aco_set_defaults(&general_option, "general", cel_cfg->general)) {
ast_log(LOG_NOTICE, "Failed to process CEL configuration; using defaults\n");
- ao2_global_obj_replace(cel_configs, cel_cfg);
+ ao2_global_obj_replace_unref(cel_configs, cel_cfg);
}
}