mod_callcenter: Fix bad return type so it compile on archlinux, thx bougyman

This commit is contained in:
Marc Olivier Chouinard 2010-10-22 18:34:45 -04:00
parent 7d7d66342f
commit 3a47598695
1 changed files with 1 additions and 1 deletions

View File

@ -850,7 +850,7 @@ cc_status_t cc_agent_del(const char *agent)
return result;
}
cc_agent_status_t cc_agent_get(const char *key, const char *agent, char *ret_result, size_t ret_result_size)
cc_status_t cc_agent_get(const char *key, const char *agent, char *ret_result, size_t ret_result_size)
{
cc_status_t result = CC_STATUS_SUCCESS;
char *sql;