]> gitweb.factorcode.org Git - factor.git/commitdiff
fix file-systems on freebsd
authorDoug Coleman <doug.coleman@gmail.com>
Mon, 31 Aug 2009 16:35:52 +0000 (11:35 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Mon, 31 Aug 2009 16:35:52 +0000 (11:35 -0500)
basis/io/files/info/unix/freebsd/freebsd.factor

index 079dac23a96e51500b195345405f54310949c083..9d9d5b8834016a970993d8022cf183848e4a0a72 100644 (file)
@@ -40,7 +40,7 @@ M: freebsd statfs>file-system-info ( file-system-info statvfs -- file-system-inf
     } cleave ;
 
 M: freebsd file-system-statvfs ( path -- byte-array )
-    \ statvfs <struct> [ statvfs io-error ] keep ;
+    \ statvfs <struct> [ statvfs io-error ] keep ;
 
 M: freebsd statvfs>file-system-info ( file-system-info statvfs -- file-system-info )
     {
@@ -51,5 +51,5 @@ M: freebsd statvfs>file-system-info ( file-system-info statvfs -- file-system-in
 M: freebsd file-systems ( -- array )
     f 0 0 getfsstat dup io-error
     \ statfs <struct> dup dup length 0 getfsstat io-error
-    statfs heap-size group
+    statfs heap-size group
     [ f_mntonname>> alien>native-string file-system-info ] map ;