diff --git a/core/vdbe/mod.rs b/core/vdbe/mod.rs index c5ab69eb9..a95cc7fba 100644 --- a/core/vdbe/mod.rs +++ b/core/vdbe/mod.rs @@ -285,7 +285,10 @@ impl ProgramState { } pub fn get_parameter(&self, index: NonZero) -> OwnedValue { - self.parameters.get(&index).cloned().unwrap_or(OwnedValue::Null) + self.parameters + .get(&index) + .cloned() + .unwrap_or(OwnedValue::Null) } pub fn reset(&mut self) {