aboutsummaryrefslogtreecommitdiffstats
path: root/main/sched.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/sched.c')
-rw-r--r--main/sched.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/main/sched.c b/main/sched.c
index 6ef2972b7..d877417b6 100644
--- a/main/sched.c
+++ b/main/sched.c
@@ -252,8 +252,9 @@ static int sched_settime(struct timeval *tv, int when)
int ast_sched_replace_variable(int old_id, struct sched_context *con, int when, ast_sched_cb callback, const void *data, int variable)
{
/* 0 means the schedule item is new; do not delete */
- if (old_id > 0)
- ast_sched_del(con, old_id);
+ if (old_id > 0) {
+ AST_SCHED_DEL(con, old_id);
+ }
return ast_sched_add_variable(con, when, callback, data, variable);
}
@@ -295,8 +296,9 @@ int ast_sched_add_variable(struct sched_context *con, int when, ast_sched_cb cal
int ast_sched_replace(int old_id, struct sched_context *con, int when, ast_sched_cb callback, const void *data)
{
- if (old_id > -1)
- ast_sched_del(con, old_id);
+ if (old_id > -1) {
+ AST_SCHED_DEL(con, old_id);
+ }
return ast_sched_add(con, when, callback, data);
}