extra semicolon

This commit is contained in:
Ryan X. Charles 2014-09-15 14:52:43 -07:00
parent 4bb9105b2d
commit 9cb31ebb6a
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ BufferReader.prototype.readVarintBuf = function() {
var first = this.buf.readUInt8(this.pos);
switch (first) {
case 0xFD:
return this.buffer(1 + 2);;
return this.buffer(1 + 2);
case 0xFE:
return this.buffer(1 + 4);
case 0xFF: