From 69aad251c122e00b2774fc57a4048bf9c534c8ee Mon Sep 17 00:00:00 2001
From: Doug Coleman <doug.coleman@gmail.com>
Date: Tue, 21 Oct 2008 02:53:34 -0500
Subject: [PATCH] use common statfs fields on linux for now

---
 basis/unix/statfs/linux/linux.factor | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/basis/unix/statfs/linux/linux.factor b/basis/unix/statfs/linux/linux.factor
index 7a407da78b..3644fcf89b 100644
--- a/basis/unix/statfs/linux/linux.factor
+++ b/basis/unix/statfs/linux/linux.factor
@@ -29,8 +29,8 @@ M: linux >file-system-info ( struct -- statfs )
         [ statfs64-f_ffree >>ffree ]
         [ statfs64-f_fsid >>fsid ]
         [ statfs64-f_namelen >>namelen ]
-        [ statfs64-f_frsize >>frsize ]
-        [ statfs64-f_spare >>spare ]
+        ! [ statfs64-f_frsize >>frsize ]
+        ! [ statfs64-f_spare >>spare ]
     } cleave ;
 
 M: linux file-system-info ( path -- byte-array )