Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvestre committed Jul 5, 2023
1 parent 286623a commit 516b005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uu/dd/src/bufferedoutput.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ impl<'a> BufferedOutput<'a> {
}

pub(crate) fn discard_cache(&self, offset: libc::off_t, len: libc::off_t) {
self.inner.discard_cache(offset, len)
self.inner.discard_cache(offset, len);
}

/// Flush the partial block stored in the internal buffer.
Expand Down

0 comments on commit 516b005

Please sign in to comment.