# HG changeset patch # User Stefan Vogel # Date 1392215481 -3600 # Node ID 4307e39fc342f7a7d7ce960d499a17444dbb10c0 # Parent 46cd77ec80df9d87db54b1fc4a65da08d297c1e8 class: SHA1Stream changed: #nextPutBytes:from:startingAt: diff -r 46cd77ec80df -r 4307e39fc342 SHA1Stream.st --- a/SHA1Stream.st Wed Feb 12 15:31:14 2014 +0100 +++ b/SHA1Stream.st Wed Feb 12 15:31:21 2014 +0100 @@ -549,7 +549,7 @@ OBJ oClass = __Class(anObject); int nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars); - nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars); + nInstBytes = __OBJS2BYTES__(nInstVars); switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) { case BYTEARRAY: case WORDARRAY: @@ -591,11 +591,11 @@ !SHA1Stream class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/SHA1Stream.st,v 1.42 2014-02-12 14:14:16 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/SHA1Stream.st,v 1.43 2014-02-12 14:31:21 stefan Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libbasic/SHA1Stream.st,v 1.42 2014-02-12 14:14:16 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/SHA1Stream.st,v 1.43 2014-02-12 14:31:21 stefan Exp $' ! !