From 80b884780bb39815397e6eeb43b9efc4bc131ade Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Tue, 18 Aug 2020 10:57:43 -0700 Subject: [PATCH] wasmtime-wasi: fix path to errno type --- crates/wasi/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/wasi/src/lib.rs b/crates/wasi/src/lib.rs index bd12def83a..c88125dbc9 100644 --- a/crates/wasi/src/lib.rs +++ b/crates/wasi/src/lib.rs @@ -32,7 +32,7 @@ resolution.", }, }, // Error to return when caller module is missing memory export: - missing_memory: { wasi_common::wasi::Errno::Inval }, + missing_memory: { wasi_common::wasi::types::Errno::Inval }, }); pub fn is_wasi_module(name: &str) -> bool {