From 019310244e8e226f281418348e1ed74d210967f8 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Fri, 2 Sep 2005 11:39:24 +0000 Subject: [PATCH] fix a couple of warnings on osx git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6500 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils.c b/utils.c index f45226f4ce..282c2e18ea 100755 --- a/utils.c +++ b/utils.c @@ -563,12 +563,12 @@ static struct timeval tvfix(struct timeval a) { if (a.tv_usec >= ONE_MILLION) { ast_log(LOG_WARNING, "warning too large timestamp %ld.%ld\n", - a.tv_sec, a.tv_usec); + a.tv_sec, (long int) a.tv_usec); a.tv_sec += a.tv_usec % ONE_MILLION; a.tv_usec %= ONE_MILLION; } else if (a.tv_usec < 0) { ast_log(LOG_WARNING, "warning negative timestamp %ld.%ld\n", - a.tv_sec, a.tv_usec); + a.tv_sec, (long int) a.tv_usec); a.tv_usec = 0; } return a;