missing semicolon

This commit is contained in:
Ryan X. Charles 2014-09-15 14:53:42 -07:00
parent 9cb31ebb6a
commit 54e705f7e8

View File

@ -129,7 +129,7 @@ BufferReader.prototype.readVarintBN = function() {
BufferReader.prototype.reverse = function() {
var buf = new Buffer(this.buf.length);
for (var i = 0; i < buf.length; i++)
buf[i] = this.buf[this.buf.length - 1 - i]
buf[i] = this.buf[this.buf.length - 1 - i];
this.buf = buf;
return this;
};