ByteArray.st
changeset 4944 e06f2428c0a4
parent 4943 8e51d34f2b3a
child 4945 2e67ed09d194
--- a/ByteArray.st	Tue Oct 26 20:34:14 1999 +0200
+++ b/ByteArray.st	Tue Oct 26 20:45:29 1999 +0200
@@ -1161,7 +1161,7 @@
                             count--;
                         }
                         /* copy aligned part */
-                        while (count >= 8)) {
+                        while (count >= 8) {
                             ((unsigned INT *)dstp)[0] = ((unsigned INT *)srcp)[0];
                             dstp += 8;
                             srcp += 8;
@@ -2808,5 +2808,5 @@
 !ByteArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ByteArray.st,v 1.129 1999-10-26 18:34:14 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ByteArray.st,v 1.130 1999-10-26 18:45:29 cg Exp $'
 ! !