diff options
Diffstat (limited to 'ext/ffi/lib.rs')
-rw-r--r-- | ext/ffi/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ffi/lib.rs b/ext/ffi/lib.rs index 2d3bb2866..b5a2a3bd5 100644 --- a/ext/ffi/lib.rs +++ b/ext/ffi/lib.rs @@ -64,7 +64,7 @@ pub fn check_unstable2(state: &Rc<RefCell<OpState>>, api_name: &str) { } pub trait FfiPermissions { - fn check(&mut self, path: Option<&Path>) -> Result<(), AnyError>; + fn check_partial(&mut self, path: Option<&Path>) -> Result<(), AnyError>; } pub(crate) type PendingFfiAsyncWork = Box<dyn FnOnce()>; |