Skip to content

Commit

Permalink
Update serializedtypes.js
Browse files Browse the repository at this point in the history
let to var
  • Loading branch information
darentuzi committed Jul 15, 2015
1 parent 06a1a2a commit 3864de2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/serializedtypes.js
Expand Up @@ -257,7 +257,7 @@ function parse(so) {
}

const field_bits = tag_byte & 0x0f;
let field_name = (field_bits === 0)
var field_name = (field_bits === 0)
? binformat.fields[type_bits][so.read(1)[0]]
: binformat.fields[type_bits][field_bits];

Expand Down

0 comments on commit 3864de2

Please sign in to comment.