Skip to content

Commit e8fb2e0

Browse files
committed
dir/man: fix Clippy warnings
Signed-off-by: Daniel Maslowski <[email protected]>
1 parent 7f510a2 commit e8fb2e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dir/man.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ impl<'a> Manifest {
191191

192192
let header = self.header.as_bytes();
193193
let mut hasher = Sha256::new();
194-
hasher.update(&header);
194+
hasher.update(header);
195195
hasher.update(&self.mdata);
196196
let hash = hasher.finalize();
197197
let hb = hash.as_bytes();

0 commit comments

Comments
 (0)