From e0b32b53b1344f76ba508526ef0f7c227211b342 Mon Sep 17 00:00:00 2001 From: Luigi Rizzo Date: Thu, 28 Jun 2007 18:37:20 +0000 Subject: [PATCH] cast a time_t so that it does not conflict with the print format. This change was already done on trunk so this change needs to be blocked from merging. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@72453 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_meetme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 2c90f291e1..d285e7a655 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -2258,7 +2258,7 @@ bailoutandtrynormal: user->user_no, S_OR(user->chan->cid.cid_num, ""), S_OR(user->chan->cid.cid_name, ""), - (now - user->jointime)); + (long)(now - user->jointime)); } conf->users--;