Skip to content

Commit

Permalink
trailing whitespace again
Browse files Browse the repository at this point in the history
Signed-off-by: Eliza Weisman <[email protected]>
  • Loading branch information
hawkw committed Aug 13, 2020
1 parent 4bd3da2 commit 9905887
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/lib/src/data/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ impl Data {
Ok(0) => { self.is_complete = true; break },
Ok(n) => len += n,
Err(e) => {
error_!("Failed to read into peek buffer: {:?}.", e);
error!("Failed to read into peek buffer: {:?}.", e);
break;
}
}
Expand Down
2 changes: 1 addition & 1 deletion core/lib/src/data/data_stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ impl AsyncRead for DataStream {
) -> Poll<io::Result<usize>> {
let span = tracing::trace_span!("DataStream::poll_read()");
let _e = span.enter();

if self.buffer.limit() > 0 {
trace!("DataStream::buffer_read()");
match Pin::new(&mut self.buffer).poll_read(cx, buf) {
Expand Down

0 comments on commit 9905887

Please sign in to comment.