[asterisk-commits] rizzo: branch 1.4 r72453 - /branches/1.4/apps/app_meetme.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Jun 28 13:37:20 CDT 2007


Author: rizzo
Date: Thu Jun 28 13:37:20 2007
New Revision: 72453

URL: http://svn.digium.com/view/asterisk?view=rev&rev=72453
Log:
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.


Modified:
    branches/1.4/apps/app_meetme.c

Modified: branches/1.4/apps/app_meetme.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_meetme.c?view=diff&rev=72453&r1=72452&r2=72453
==============================================================================
--- branches/1.4/apps/app_meetme.c (original)
+++ branches/1.4/apps/app_meetme.c Thu Jun 28 13:37:20 2007
@@ -2258,7 +2258,7 @@
 				      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--;




More information about the asterisk-commits mailing list