alpha64 changes
authorClaus Gittinger <cg@exept.de>
Tue, 22 Jul 1997 17:41:20 +0200
changeset 2768 8827d8c188df
parent 2767 16a779e72ad6
child 2769 2fd416e4b589
alpha64 changes
ByteArray.st
--- a/ByteArray.st	Tue Jul 22 15:33:17 1997 +0200
+++ b/ByteArray.st	Tue Jul 22 17:41:20 1997 +0200
@@ -1897,7 +1897,7 @@
     if (__qClass(self) == @global(ByteArray)) {
 	cnt = __byteArraySize(self);
 	dst = __ByteArrayInstPtr(self)->ba_element;
-	if (! ((int)dst & (sizeof(long)-1))) {
+	if (! ((INT)dst & (sizeof(long)-1))) {
 	    ldst = (unsigned long *)dst;
 	    while (cnt > 16) {
 		ldst[0] = ~(ldst[0]);
@@ -2321,5 +2321,5 @@
 !ByteArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ByteArray.st,v 1.80 1997-05-14 14:54:38 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ByteArray.st,v 1.81 1997-07-22 15:41:20 cg Exp $'
 ! !