Skip to content

Commit 788306c

Browse files
committed
cargo fmt
1 parent fa33a26 commit 788306c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/indexer.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,7 @@ impl io::Write for Indexer<'_> {
188188

189189
let res = raw::git_indexer_append(self.raw, ptr, len, &mut self.progress);
190190
if res < 0 {
191-
Err(io::Error::new(
192-
io::ErrorKind::Other,
193-
Error::last_error(res),
194-
))
191+
Err(io::Error::new(io::ErrorKind::Other, Error::last_error(res)))
195192
} else {
196193
Ok(buf.len())
197194
}

0 commit comments

Comments
 (0)