From 8052757a12d18197729d7ed453f6290d9f7e2dc6 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Fri, 11 Sep 2009 16:53:12 +0000 Subject: [PATCH] bah git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14831 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_cpp.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/switch_cpp.cpp b/src/switch_cpp.cpp index e1cf559f93..3f4fc4d18a 100644 --- a/src/switch_cpp.cpp +++ b/src/switch_cpp.cpp @@ -1295,19 +1295,19 @@ SWITCH_DECLARE(switch_status_t) CoreSession::process_callback_result(char *resul p++; if (*p == '+' || *p == '-') { int step; - int64_t target; + int32_t target; if (!(step = atoi(p))) { step = 1000; } samps = step * (codec->implementation->samples_per_second / 1000); - target = fhp->pos + samps; + target = (int32_t)fhp->pos + samps; if (target < 0) { target = 0; } - switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "seek to position %d\n", (uint32_t)target); + switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "seek to position %d\n", target); switch_core_file_seek(fhp, &pos, target, SEEK_SET); } else {