freetdm: oops

This commit is contained in:
Moises Silva 2010-05-27 15:34:00 -04:00
parent 23b9a148ef
commit 16901d3cc6
2 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -357,9 +357,6 @@ FT_DECLARE(ftdm_status_t) ftdm_sched_get_time_to_next_timer(const ftdm_sched_t *
/* forever by default */
*timeto = -1;
ftdm_log(FTDM_LOG_ERROR, "Implement me!\n");
return FTDM_NOTIMPL;
ftdm_mutex_lock(sched->mutex);
res = gettimeofday(&currtime, NULL);
@ -399,6 +396,9 @@ FT_DECLARE(ftdm_status_t) ftdm_sched_get_time_to_next_timer(const ftdm_sched_t *
done:
ftdm_mutex_unlock(sched->mutex);
#else
ftdm_log(FTDM_LOG_ERROR, "Implement me!\n");
status = FTDM_NOTIMPL;
#endif
#ifdef __WINDOWS__
UNREFERENCED_PARAMETER(timeto);