From 83b1a9684f2e50558ec9f2c951264e25466a3719 Mon Sep 17 00:00:00 2001 From: pl Date: Fri, 12 Sep 2003 15:54:28 +0000 Subject: warning fix (missing C initializer) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10858 b3059339-0415-0410-9bf9-f77b7e298cf2 --- osdep/lrmi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'osdep') diff --git a/osdep/lrmi.c b/osdep/lrmi.c index ce77a6767a..12dd6e4c3c 100644 --- a/osdep/lrmi.c +++ b/osdep/lrmi.c @@ -43,7 +43,7 @@ static struct int ready; int count; struct mem_block blocks[REAL_MEM_BLOCKS]; - } mem_info = { 0 }; + } mem_info = { .ready = 0, }; static int real_mem_init(void) @@ -181,7 +181,7 @@ static struct unsigned short ret_seg, ret_off; unsigned short stack_seg, stack_off; struct vm86_struct vm; - } context = { 0 }; + } context = { .ready = 0, }; static inline void -- cgit v1.2.3