From 0b1ac5dd0b9ef4191c21a0217aef38fc99727039 Mon Sep 17 00:00:00 2001 From: russell Date: Mon, 25 Dec 2006 02:06:47 +0000 Subject: Resolve some compiler warnings git-svn-id: http://svn.digium.com/svn/asterisk/trunk@48950 f38db490-d61c-443f-a65b-d21fe96a405b --- main/frame.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/frame.c') diff --git a/main/frame.c b/main/frame.c index 52d5ecfc2..0e46dcdca 100644 --- a/main/frame.c +++ b/main/frame.c @@ -1084,7 +1084,7 @@ int ast_codec_pref_setsize(struct ast_codec_pref *pref, int format, int framems) struct ast_format_list ast_codec_pref_getsize(struct ast_codec_pref *pref, int format) { int x, index = -1, framems = 0; - struct ast_format_list fmt; + struct ast_format_list fmt = { 0, }; for (x = 0; x < sizeof(AST_FORMAT_LIST) / sizeof(AST_FORMAT_LIST[0]); x++) { if(AST_FORMAT_LIST[x].bits == format) { -- cgit v1.2.3