From 816a7cf13bb2f9a715a2129478a570422e8d8843 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Fri, 5 May 2006 16:36:43 +0000 Subject: constify the argument to pbx_checkcondition git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@24878 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_while.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/app_while.c') diff --git a/apps/app_while.c b/apps/app_while.c index ea0fd4986..88996b92a 100644 --- a/apps/app_while.c +++ b/apps/app_while.c @@ -277,7 +277,7 @@ static int _while_exec(struct ast_channel *chan, void *data, int end) } - if ((!end && !pbx_checkcondition((char *) condition)) || (end == 2)) { + if ((!end && !pbx_checkcondition(condition)) || (end == 2)) { /* Condition Met (clean up helper vars) */ const char *goto_str; pbx_builtin_setvar_helper(chan, varname, NULL); -- cgit v1.2.3