Index: head/sysutils/fusefs-sandboxfs/files/patch-src_nodes_conv.rs =================================================================== --- head/sysutils/fusefs-sandboxfs/files/patch-src_nodes_conv.rs (nonexistent) +++ head/sysutils/fusefs-sandboxfs/files/patch-src_nodes_conv.rs (revision 492300) @@ -0,0 +1,19 @@ +Unbreak on i386 + +error[E0308]: mismatched types + --> src/nodes/conv.rs:72:19 + | +72 | Timespec::new(val.tv_sec() as sys::time::time_t, usec) + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected i64, found i32 + +--- src/nodes/conv.rs.orig 2019-02-06 10:25:59 UTC ++++ src/nodes/conv.rs +@@ -69,7 +69,7 @@ pub fn timeval_to_timespec(val: sys::time::TimeVal) -> + } else { + val.tv_usec() as i32 + }; +- Timespec::new(val.tv_sec() as sys::time::time_t, usec) ++ Timespec::new((val.tv_sec() as sys::time::time_t).into(), usec) + } + + /// Converts a file type as returned by the file system to a FUSE file type. Property changes on: head/sysutils/fusefs-sandboxfs/files/patch-src_nodes_conv.rs ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property