Skip to content

Commit bc4acf8

Browse files
committed
Semicolon.
1 parent c64991a commit bc4acf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FastIntegerCompression.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ FastIntegerCompression.compress = function(input) {
5050
var c = input.length;
5151
var buf = new ArrayBuffer(FastIntegerCompression.computeCompressedSizeInBytes(input));
5252
var view = new Int8Array(buf);
53-
var pos = 0
53+
var pos = 0;
5454
for(var i = 0; i < c; i++) {
5555
var val = input[i];
5656
if (val < (1 << 7)) {

0 commit comments

Comments
 (0)