[asterisk-commits] mmichelson: trunk r95443 - /trunk/apps/app_meetme.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon Dec 31 12:46:12 CST 2007


Author: mmichelson
Date: Mon Dec 31 12:46:12 2007
New Revision: 95443

URL: http://svn.digium.com/view/asterisk?view=rev&rev=95443
Log:
Fix a compiler warning

(closes issue #11658, reported and patched by eliel)


Modified:
    trunk/apps/app_meetme.c

Modified: trunk/apps/app_meetme.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_meetme.c?view=diff&rev=95443&r1=95442&r2=95443
==============================================================================
--- trunk/apps/app_meetme.c (original)
+++ trunk/apps/app_meetme.c Mon Dec 31 12:46:12 2007
@@ -2696,7 +2696,7 @@
 		char useropts[32] = "";
 		char adminopts[32] = "";
 		struct ast_tm tm, etm;
-		struct timeval starttime, endtime;
+		struct timeval starttime = { .tv_sec=0 }, endtime = { .tv_sec=0 };
 
 		if (rt_schedule) {
 			now = ast_tvnow();




More information about the asterisk-commits mailing list