From c50fea15acfbdd2ec9c983fdc82476bea8dbbaa0 Mon Sep 17 00:00:00 2001 From: Jeff Lenk Date: Mon, 27 Jun 2011 20:23:00 -0500 Subject: [PATCH] resolve trivial compiler warning --- src/switch_ivr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/switch_ivr.c b/src/switch_ivr.c index 2929a547dc..6193145f12 100644 --- a/src/switch_ivr.c +++ b/src/switch_ivr.c @@ -130,7 +130,8 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_sleep(switch_core_session_t *session, switch_status_t status = SWITCH_STATUS_SUCCESS; switch_time_t start = switch_micro_time_now(), now, done = switch_micro_time_now() + (ms * 1000); switch_frame_t *read_frame, cng_frame = { 0 }; - int32_t left, elapsed; + int32_t left; + uint32_t elapsed; char data[2] = ""; switch_frame_t write_frame = { 0 };