We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d4a49c commit b74ca19Copy full SHA for b74ca19
src/process.rs
@@ -103,7 +103,9 @@ impl PyProcess {
103
}
104
105
fn set_dtb(&mut self, dtb1: umem, dtb2: umem) -> PyResult<()> {
106
- self.0.set_dtb(dtb1.into(), dtb2.into()).map_err(|e| PyException::new_err(format!("failed to set dtb {}", e)))
+ self.0
107
+ .set_dtb(dtb1.into(), dtb2.into())
108
+ .map_err(|e| PyException::new_err(format!("failed to set dtb {}", e)))
109
110
111
fn module_info_list(&mut self) -> PyResult<Vec<PyModuleInfo>> {
0 commit comments