fix compiler warning

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13566 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2009-06-03 13:45:12 +00:00
parent d77a3b1980
commit 71bb1b3efb
1 changed files with 4 additions and 4 deletions

View File

@ -42,10 +42,10 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_cluechoo_load);
*/ */
SWITCH_MODULE_DEFINITION(mod_cluechoo, mod_cluechoo_load, mod_cluechoo_shutdown, NULL); SWITCH_MODULE_DEFINITION(mod_cluechoo, mod_cluechoo_load, mod_cluechoo_shutdown, NULL);
int add_D51(); int add_D51(int x);
int add_sl(); int add_sl(int x);
int add_man(); int add_man(int y, int x);
int add_smoke(); int add_smoke(int y, int x);
int go(int i); int go(int i);
int vgo(int i, switch_core_session_t *session); int vgo(int i, switch_core_session_t *session);