From 68757f0a9911002d8f971c315ca56776da4e6e1b Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Wed, 3 Dec 2008 00:19:52 -0600 Subject: [PATCH] revert id change --- basis/io/unix/files/files.factor | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/basis/io/unix/files/files.factor b/basis/io/unix/files/files.factor index 6f542361ee..05bab8c654 100644 --- a/basis/io/unix/files/files.factor +++ b/basis/io/unix/files/files.factor @@ -80,7 +80,7 @@ TUPLE: unix-file-system-info < file-system-info block-size preferred-block-size blocks blocks-free blocks-available files files-free files-available -name-max flags id id0 id1 ; +name-max flags id ; HOOK: new-file-system-info os ( -- file-system-info ) @@ -108,8 +108,6 @@ M: unix statvfs>file-system-info drop ; [ dup [ blocks-free>> ] [ block-size>> ] bi * >>free-space drop ] [ dup [ blocks>> ] [ block-size>> ] bi * >>total-space drop ] [ dup [ total-space>> ] [ free-space>> ] bi - >>used-space drop ] - [ dup id>> 2 c-uint-array> first2 [ >>id0 ] [ >>id1 ] bi* drop ] - [ f >>id drop ] [ ] } cleave ;