From 46ecfc0bea90202a795e3777fc5324b5d19edffd Mon Sep 17 00:00:00 2001 From: kpfleming Date: Wed, 20 Sep 2006 05:01:03 +0000 Subject: these functions never should have been non-static or in a header file git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43313 f38db490-d61c-443f-a65b-d21fe96a405b --- res/res_monitor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'res/res_monitor.c') diff --git a/res/res_monitor.c b/res/res_monitor.c index 86d6021af..e81325da7 100644 --- a/res/res_monitor.c +++ b/res/res_monitor.c @@ -323,12 +323,12 @@ int ast_monitor_unpause(struct ast_channel *chan) return ast_monitor_set_state(chan, AST_MONITOR_RUNNING); } -int pause_monitor_exec(struct ast_channel *chan, void *data) +static int pause_monitor_exec(struct ast_channel *chan, void *data) { return ast_monitor_pause(chan); } -int unpause_monitor_exec(struct ast_channel *chan, void *data) +static int unpause_monitor_exec(struct ast_channel *chan, void *data) { return ast_monitor_unpause(chan); } -- cgit v1.2.3