Skip to content

Commit

Permalink
Merge pull request #1081 from MJDSys/fix_from_chunk_to_bytes
Browse files Browse the repository at this point in the history
fix(http): Fix commit fac3d70
  • Loading branch information
seanmonstar authored Mar 2, 2017
2 parents fac3d70 + 9e16637 commit 8140f38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/http/chunk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl From<Bytes> for Chunk {

impl From<Chunk> for Bytes {
fn from(chunk: Chunk) -> Bytes {
match self.0 {
match chunk.0 {
Inner::Shared(bytes) => bytes,
}
}
Expand Down

0 comments on commit 8140f38

Please sign in to comment.