Skip to content

Commit

Permalink
Add semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Shnatsel committed Jun 24, 2018
1 parent bc3916d commit 3715c4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ impl InflateStream {
}

for i in self.pos as usize..pos_end as usize {
self.buffer[i] = self.buffer[i + forward as usize]
self.buffer[i] = self.buffer[i + forward as usize];
}
self.pos = pos_end;
left
Expand Down

0 comments on commit 3715c4c

Please sign in to comment.