From 9f763375deb6b81df81b71f64f50f6bf02853a61 Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Thu, 21 May 2020 12:38:06 -0700 Subject: [PATCH] error name change fixup --- crates/wasi-common/src/wasi.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/wasi-common/src/wasi.rs b/crates/wasi-common/src/wasi.rs index 4ab77ec3b2..f35055ffa8 100644 --- a/crates/wasi-common/src/wasi.rs +++ b/crates/wasi-common/src/wasi.rs @@ -40,7 +40,7 @@ impl From for Errno { InFunc { .. } => Self::Inval, InDataField { .. } => Self::Inval, SliceLengthsDiffer { .. } => Self::Fault, - BorrowCheckerOOM { .. } => Self::Fault, + BorrowCheckerOutOfHandles { .. } => Self::Fault, } } }