From 71bb1b3efb6d22f0dd8b42e2a34f721b00253ccf Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Wed, 3 Jun 2009 13:45:12 +0000 Subject: [PATCH] fix compiler warning git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13566 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_cluechoo/mod_cluechoo.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mod/applications/mod_cluechoo/mod_cluechoo.c b/src/mod/applications/mod_cluechoo/mod_cluechoo.c index 7f4555db99..d36948ba7f 100644 --- a/src/mod/applications/mod_cluechoo/mod_cluechoo.c +++ b/src/mod/applications/mod_cluechoo/mod_cluechoo.c @@ -42,10 +42,10 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_cluechoo_load); */ SWITCH_MODULE_DEFINITION(mod_cluechoo, mod_cluechoo_load, mod_cluechoo_shutdown, NULL); -int add_D51(); -int add_sl(); -int add_man(); -int add_smoke(); +int add_D51(int x); +int add_sl(int x); +int add_man(int y, int x); +int add_smoke(int y, int x); int go(int i); int vgo(int i, switch_core_session_t *session);