On Fri, Mar 24, 2006 at 04:07:52PM +0900, Gowri Satish Adimulam wrote: > Hi , > Iam trying to compile simple application with mips cross compiler , > Iam getting the below error , > i tried to google but unable to find relavent solution > > any pointers will be helpful , > > ===============error========== > > mipsel-linux-uclibc-gcc -Wall -c -o ls.o ls.c > ls.c: In function `donlist': > ls.c:591: error: label at end of compound statement > > ==============end of error============ The compiler got pickier about such empty statements some years ago, you'll have to update your source from .e.g. switch (.....) { case 1: ..... break; default: } to switch (.....) { case 1: ..... break; default: break; } Thiemo