Skip to content

Commit 7aec9da

Browse files
committed
rename parameter
1 parent 6f6f192 commit 7aec9da

File tree

1 file changed

+2
-2
lines changed
  • crates/wasmi/src/engine/executor/handler

1 file changed

+2
-2
lines changed

crates/wasmi/src/engine/executor/handler/state.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ pub struct Sp {
108108
}
109109

110110
impl<'a> From<&'a mut [UntypedVal]> for Sp {
111-
fn from(value: &'a mut [UntypedVal]) -> Self {
111+
fn from(values: &'a mut [UntypedVal]) -> Self {
112112
Self {
113-
value: value.as_mut_ptr(),
113+
value: values.as_mut_ptr(),
114114
}
115115
}
116116
}

0 commit comments

Comments
 (0)