diff -r c5eea718b0ff -r cbd013980da3 ExternalStream.st --- a/ExternalStream.st Wed Feb 12 15:14:16 2014 +0100 +++ b/ExternalStream.st Wed Feb 12 15:18:02 2014 +0100 @@ -3365,6 +3365,7 @@ case SWORDARRAY: case SLONGARRAY: case FLOATARRAY: + break; case DOUBLEARRAY: #ifdef __NEED_DOUBLE_ALIGN nInstBytes = (nInstBytes-1+__DOUBLE_ALIGN) &~ (__DOUBLE_ALIGN-1); @@ -3375,6 +3376,7 @@ #ifdef __NEED_LONGLONG_ALIGN nInstBytes = (nInstBytes-1+__LONGLONG_ALIGN) &~ (__LONGLONG_ALIGN-1); #endif + break; default: goto bad; } @@ -3562,6 +3564,7 @@ case SWORDARRAY: case SLONGARRAY: case FLOATARRAY: + break; case DOUBLEARRAY: #ifdef __NEED_DOUBLE_ALIGN nInstBytes = (nInstBytes-1+__DOUBLE_ALIGN) &~ (__DOUBLE_ALIGN-1); @@ -3572,6 +3575,7 @@ #ifdef __NEED_LONGLONG_ALIGN nInstBytes = (nInstBytes-1+__LONGLONG_ALIGN) &~ (__LONGLONG_ALIGN-1); #endif + break; default: goto bad; } @@ -5856,11 +5860,11 @@ !ExternalStream class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.379 2014-02-12 12:54:11 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.380 2014-02-12 14:18:02 stefan Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.379 2014-02-12 12:54:11 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.380 2014-02-12 14:18:02 stefan Exp $' ! !