aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-31 18:46:12 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-31 18:46:12 +0000
commit0fade46c8220fff85c24c50332fa0c28201910d8 (patch)
tree565aae6d86d9b6a37332e4a120a73b3251cfb1e0 /apps
parent4bc50170da8e6e2863a5ae3b27ebd37921ece171 (diff)
Fix a compiler warning
(closes issue #11658, reported and patched by eliel) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@95443 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 5107b7f82..f7cbfae8f 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();