From: aho450s AT nic DOT smsu DOT edu (Tony O'Bryan) Newsgroups: comp.os.msdos.djgpp Subject: Re: Porting from BC to DJGPP Date: Sun, 20 Apr 1997 13:34:47 GMT Organization: Southwest Missouri State University Lines: 12 Message-ID: <335a1b25.2866005@ursa.smsu.edu> References: <5jd2nr$nmt$1 AT usenet DOT kreonet DOT re DOT kr> NNTP-Posting-Host: forseti.i172.smsu.edu To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk On 20 Apr 1997 12:38:19 GMT, doing AT soback DOT kornet DOT nm DOT kr wrote: >15: } >16: >17: union HAN currCode = { (u16) 0x8441 }; > > I see a warning at 17, "missing braces around initializer for 'currCode.c'. >Maybe I should fix 6-8 line. What should I do? Try putting a semi-colon at the end of line 15. Union declarations require them.