aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_monitor.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-20 05:01:03 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-20 05:01:03 +0000
commit46ecfc0bea90202a795e3777fc5324b5d19edffd (patch)
tree99afd6f0d258fa3dcdbef31e3a7770a6f542ae2c /res/res_monitor.c
parent99788749f1a3ecbb960ee7d15be06650344d1382 (diff)
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
Diffstat (limited to 'res/res_monitor.c')
-rw-r--r--res/res_monitor.c4
1 files changed, 2 insertions, 2 deletions
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);
}