UnixOperatingSystem.st
changeset 7462 05b5202d988a
parent 7461 00fb6fbd9b4f
child 7465 1b616e80d565
--- a/UnixOperatingSystem.st	Mon Jun 30 10:47:27 2003 +0200
+++ b/UnixOperatingSystem.st	Mon Jun 30 12:09:18 2003 +0200
@@ -10381,7 +10381,7 @@
     "return the (integer) fileDescriptor"
 
 %{
-    INT handle = (INT)(__externalAddressVal(self));
+    OBJ handle = __externalAddressVal(self);
 
     if (__isSmallInteger(handle)) {
         RETURN (handle);
@@ -13347,7 +13347,7 @@
 !UnixOperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.169 2003-06-30 08:47:27 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.170 2003-06-30 10:09:18 stefan Exp $'
 ! !
 
 UnixOperatingSystem initialize!