From mboxrd@z Thu Jan 1 00:00:00 1970 From: david stevenson Date: Mon, 4 Aug 2003 21:59:09 +0100 Subject: [U-Boot-Users] problem compiling sc520 In-Reply-To: <200308042135.48979.david@avoncliff.com> References: <20030804211846.1D746C602D@atlas.denx.de> <200308042135.48979.david@avoncliff.com> Message-ID: <200308042159.09596.david@avoncliff.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Monday 04 August 2003 9:35 pm, david stevenson wrote: > > > > Try replacing the "done:" with "done: ;" > > > > > > Yes that works fine. (strange the things I learn about C day by day 8-) > > > ) > > > > > > > If it works, please submit a patch. Sorry here is another one I must have fixed and forgot 8-( Index: common/cmd_bootm.c =================================================================== RCS file: /cvsroot//u-boot/u-boot/common/cmd_bootm.c,v retrieving revision 1.21 diff -u -r1.21 cmd_bootm.c --- common/cmd_bootm.c 27 Jul 2003 00:21:15 -0000 1.21 +++ common/cmd_bootm.c 4 Aug 2003 23:28:54 -0000 @@ -1012,9 +1012,9 @@ printf ("Image at %08lX:\n", (ulong)hdr); print_image_hdr( hdr ); putc ('\n'); - next_sector: + next_sector:; } - next_bank: + next_bank:; } return (0);