framer: fix undefined var typo.

This commit is contained in:
Christopher Jeffrey 2014-05-25 08:02:33 -05:00
parent 8546cc7e33
commit 6d2c1bd9f1

View File

@ -128,7 +128,7 @@ function varint(arr, value, off) {
arr[off + 4] = value >>> 24;
return 5;
} else {
p[off] = 0xff;
arr[off] = 0xff;
utils.writeU64(arr, value, off + 1);
return 9;
}