aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-28 18:37:20 +0000
committerrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-28 18:37:20 +0000
commitd60d60cb361252d9d56e6240563bb559d5226c6b (patch)
treebba081c9290a8593c2229ee1f3536e43c54b985e /apps
parent50a51c58f2fd02ef2fd3ae77d95d4891b632e848 (diff)
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: http://svn.digium.com/svn/asterisk/branches/1.4@72453 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_meetme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 2c90f291e..d285e7a65 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, "<unknown>"),
S_OR(user->chan->cid.cid_name, "<unknown>"),
- (now - user->jointime));
+ (long)(now - user->jointime));
}
conf->users--;