aboutsummaryrefslogtreecommitdiff
path: root/src/ioctl.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ioctl.rs')
-rw-r--r--src/ioctl.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ioctl.rs b/src/ioctl.rs
index 66c6a10e5..61524c274 100644
--- a/src/ioctl.rs
+++ b/src/ioctl.rs
@@ -110,7 +110,7 @@ impl IoctlState {
110 110
111 pub fn ioctl_done(&self, response: &[u8]) { 111 pub fn ioctl_done(&self, response: &[u8]) {
112 if let IoctlStateInner::Sent { buf } = self.state.get() { 112 if let IoctlStateInner::Sent { buf } = self.state.get() {
113 info!("IOCTL Response: {:02x}", Bytes(response)); 113 trace!("IOCTL Response: {:02x}", Bytes(response));
114 114
115 // TODO fix this 115 // TODO fix this
116 (unsafe { &mut *buf }[..response.len()]).copy_from_slice(response); 116 (unsafe { &mut *buf }[..response.len()]).copy_from_slice(response);