From: Anthony Minessale Date: Thu, 10 Sep 2009 23:01:44 +0000 (+0000) Subject: build err X-Git-Tag: v1.0.6~1916 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=156bb16eef091b0964601cc779967e10262eb329;p=thirdparty%2Ffreeswitch.git build err git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14814 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/switch_cpp.cpp b/src/switch_cpp.cpp index 7f0eb21d9b..e1cf559f93 100644 --- a/src/switch_cpp.cpp +++ b/src/switch_cpp.cpp @@ -1295,7 +1295,7 @@ SWITCH_DECLARE(switch_status_t) CoreSession::process_callback_result(char *resul p++; if (*p == '+' || *p == '-') { int step; - int target; + int64_t target; if (!(step = atoi(p))) { step = 1000; } @@ -1307,7 +1307,7 @@ SWITCH_DECLARE(switch_status_t) CoreSession::process_callback_result(char *resul target = 0; } - switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "seek to position %d\n", target); + switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "seek to position %d\n", (uint32_t)target); switch_core_file_seek(fhp, &pos, target, SEEK_SET); } else {