mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-23 04:31:50 +00:00
one last quick fix
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/tags/1.0.beta1@5634 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
+1
-1
@@ -7,7 +7,7 @@ AC_INIT([freeswitch], [1.0.pre1], BUG-REPORT-ADDRESS)
|
||||
AC_SUBST(SWITCH_VERSION_MAJOR, [1])
|
||||
AC_SUBST(SWITCH_VERSION_MINOR, [0])
|
||||
AC_SUBST(SWITCH_VERSION_MICRO, [beta1])
|
||||
AC_SUBST(SWITCH_VERSION_REVISION, [5630])
|
||||
AC_SUBST(SWITCH_VERSION_REVISION, [5634])
|
||||
|
||||
AC_CONFIG_FILES([src/include/switch_version.h.in:src/include/switch_version.h.template])
|
||||
|
||||
|
||||
@@ -74,7 +74,7 @@ static timer_matrix_t TIMER_MATRIX[MAX_ELEMENTS + 1];
|
||||
#define IDLE_SPEED 100
|
||||
|
||||
|
||||
static inline switch_status_t timer_init(switch_timer_t *timer)
|
||||
static switch_status_t timer_init(switch_timer_t *timer)
|
||||
{
|
||||
timer_private_t *private_info;
|
||||
int sanity = 0;
|
||||
@@ -112,7 +112,7 @@ static inline switch_status_t timer_init(switch_timer_t *timer)
|
||||
|
||||
|
||||
|
||||
static inline switch_status_t timer_step(switch_timer_t *timer)
|
||||
static switch_status_t timer_step(switch_timer_t *timer)
|
||||
{
|
||||
timer_private_t *private_info = timer->private_info;
|
||||
uint64_t samples;
|
||||
@@ -136,7 +136,7 @@ static inline switch_status_t timer_step(switch_timer_t *timer)
|
||||
}
|
||||
|
||||
|
||||
static inline switch_status_t timer_next(switch_timer_t *timer)
|
||||
static switch_status_t timer_next(switch_timer_t *timer)
|
||||
{
|
||||
timer_private_t *private_info = timer->private_info;
|
||||
|
||||
@@ -154,7 +154,7 @@ static inline switch_status_t timer_next(switch_timer_t *timer)
|
||||
return SWITCH_STATUS_FALSE;
|
||||
}
|
||||
|
||||
static inline switch_status_t timer_check(switch_timer_t *timer)
|
||||
static switch_status_t timer_check(switch_timer_t *timer)
|
||||
{
|
||||
timer_private_t *private_info = timer->private_info;
|
||||
switch_status_t status = SWITCH_STATUS_SUCCESS;
|
||||
@@ -182,7 +182,7 @@ static inline switch_status_t timer_check(switch_timer_t *timer)
|
||||
}
|
||||
|
||||
|
||||
static inline switch_status_t timer_destroy(switch_timer_t *timer)
|
||||
static switch_status_t timer_destroy(switch_timer_t *timer)
|
||||
{
|
||||
timer_private_t *private_info = timer->private_info;
|
||||
switch_mutex_lock(globals.mutex);
|
||||
|
||||
Reference in New Issue
Block a user