From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ed Swarthout Date: Tue, 16 May 2006 00:25:31 -0500 Subject: [U-Boot-Users] Minor syntax fix to README.commands.itest Message-ID: <200605160025.32167.ed@hwdebug.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de For people like me who forget where the semicolons go, it would be good to have a correct example... diff --git a/CHANGELOG b/CHANGELOG index 006cfac..00150fb 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,8 @@ Changes since U-Boot 1.1.4: ====================================================================== +* Minor syntax fix to README.commands.itest + * Changed default ramdisk addr in yosemite/yellowstone ports Patch by Stefan Roese, 15 May 2006 diff --git a/doc/README.commands.itest b/doc/README.commands.itest index 5e0fe86..4ef110d 100644 --- a/doc/README.commands.itest +++ b/doc/README.commands.itest @@ -10,7 +10,7 @@ String comparison is over the length of avoids missing terminators when using an indirect pointer. eg. -if itest.l *40000 == 12345678 then; .... -if itest.w *40000 != 1234 then; .... -if itest.b *40000 >= 12 then; .... -if itest.s *40000 -eq hello then; .... +if itest.l *40000 == 12345678; then .... +if itest.w *40000 != 1234; then .... +if itest.b *40000 >= 12; then .... +if itest.s *40000 -eq hello; then ....