From: Anthony Minessale Date: Wed, 3 Jun 2009 13:45:12 +0000 (+0000) Subject: fix compiler warning X-Git-Tag: v1.0.4~653 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71bb1b3efb6d22f0dd8b42e2a34f721b00253ccf;p=thirdparty%2Ffreeswitch.git fix compiler warning git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13566 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- 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);