We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 146cc95 commit b790e88Copy full SHA for b790e88
2 files changed
Cargo.toml
@@ -7,7 +7,7 @@ keywords = ["os", "dma"]
7
license = "MIT"
8
name = "dma-api"
9
repository = "https://github.com/drivercraft/dma-api"
10
-version = "0.4.2"
+version = "0.4.3"
11
12
[features]
13
alloc = []
src/dma/alloc/vec.rs
@@ -88,7 +88,7 @@ impl<T> DVec<T> {
88
unsafe { core::slice::from_raw_parts_mut(self.inner.addr.as_ptr(), self.len()) }
89
}
90
91
- pub fn confirm_write_all(&mut self) {
+ pub fn confirm_write_all(&self) {
92
self.inner.confirm_write_all();
93
94
0 commit comments