Work around stc problem: -16r1000000
authorStefan Vogel <sv@exept.de>
Thu, 11 Sep 2008 14:36:56 +0200
changeset 11165 1c1987db9d02
parent 11164 8cbff6ed574f
child 11166 52c2ccfc0d4c
Work around stc problem: -16r1000000
AbstractOperatingSystem.st
--- a/AbstractOperatingSystem.st	Thu Sep 11 10:00:24 2008 +0200
+++ b/AbstractOperatingSystem.st	Thu Sep 11 14:36:56 2008 +0200
@@ -5394,7 +5394,7 @@
     |diff|
 
     diff := msTime1 - msTime2.
-    diff > -16r10000000 ifTrue:[
+    diff > "-16r10000000" -268435456 ifTrue:[
         (diff < 16r10000000) ifTrue:[
             ^ diff.
         ] ifFalse:[
@@ -6557,7 +6557,7 @@
 !AbstractOperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.175 2008-09-11 07:58:12 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.176 2008-09-11 12:36:56 stefan Exp $'
 ! !
 
 AbstractOperatingSystem initialize!