Skip to content

Commit

Permalink
Fix snapshot_0 compilation error.
Browse files Browse the repository at this point in the history
  • Loading branch information
sunfishcode committed Dec 16, 2019
1 parent f512387 commit 6a6f30b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion crates/wasi-common/src/old/snapshot_0/hostcalls_impl/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ use crate::old::snapshot_0::ctx::WasiCtx;
use crate::old::snapshot_0::fdentry::{Descriptor, FdEntry};
use crate::old::snapshot_0::helpers::*;
use crate::old::snapshot_0::memory::*;
use crate::old::snapshot_0::sandboxed_tty_writer::SandboxedTTYWriter;
use crate::old::snapshot_0::sys::fdentry_impl::determine_type_rights;
use crate::old::snapshot_0::sys::hostcalls_impl::fs_helpers::path_open_rights;
use crate::old::snapshot_0::sys::{host_impl, hostcalls_impl};
use crate::old::snapshot_0::{helpers, host, wasi, wasi32, Error, Result};
use crate::sandboxed_tty_writer::SandboxedTTYWriter;
use filetime::{set_file_handle_times, FileTime};
use log::trace;
use std::fs::File;
Expand Down
1 change: 0 additions & 1 deletion crates/wasi-common/src/old/snapshot_0/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ mod helpers;
mod host;
pub mod hostcalls;
mod hostcalls_impl;
mod sandboxed_tty_writer;
mod memory;
mod sys;
pub mod wasi;
Expand Down

0 comments on commit 6a6f30b

Please sign in to comment.