[U-Boot-Users] Minor syntax fix to README.commands.itest

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 ....
participants (1)
-
Ed Swarthout