From: Mark Michelson Date: Mon, 31 Dec 2007 18:46:12 +0000 (+0000) Subject: Fix a compiler warning X-Git-Tag: 1.6.0-beta1~3^2~249 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3051807efaa790dbcad0305d479671b3938d8b15;p=thirdparty%2Fasterisk.git Fix a compiler warning (closes issue #11658, reported and patched by eliel) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@95443 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 5107b7f829..f7cbfae8ff 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -2696,7 +2696,7 @@ static struct ast_conference *find_conf_realtime(struct ast_channel *chan, char 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();