clippy fix

This commit is contained in:
Ed Guloien
2026-05-29 14:56:51 -04:00
parent babbd50182
commit daeadf81ce
+1 -1
View File
@@ -180,7 +180,7 @@ impl BlobManager {
b.append(input); b.append(input);
return Ok(()); return Ok(());
} }
return Err(BlobError::BlobDNE); Err(BlobError::BlobDNE)
} }
pub fn read(&mut self, id: usize, start: usize, len: usize) -> Result<Vec<u8>, BlobError> { pub fn read(&mut self, id: usize, start: usize, len: usize) -> Result<Vec<u8>, BlobError> {