Skip to content

Commit

Permalink
Merge pull request #1 from dubek/patch-1
Browse files Browse the repository at this point in the history
Fix AppendChannelFile#intBuffer(int value)
  • Loading branch information
jordw committed Oct 10, 2014
2 parents 1d1e1cc + 7538582 commit 48a79bb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ private ByteBuffer intBuffer(int value) {
ByteBuffer intBuffer = intBuffer();
intBuffer.putInt(value);
intBuffer.rewind();
return intBuffer();
return intBuffer;
}

private ByteBuffer longBuffer() {
Expand Down

0 comments on commit 48a79bb

Please sign in to comment.