Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
wadey committed Feb 13, 2011
1 parent 1fafb59 commit 1c1c0cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/thrift/Int64.js
Expand Up @@ -83,7 +83,7 @@ Int64.prototype = {
hi = hi / VAL32;
if (hi > VAL32) throw RangeError(hi + ' is outside Int64 range');
hi = hi | 0;
} else if (typeof(hi) == 'string') {
} else if (typeof(hi) == 'string') {
hi = (hi + '').replace(/^0x/, '');
lo = hi.substr(-8);
hi = hi.length > 8 ? hi.substr(0, hi.length - 8) : '';
Expand Down

0 comments on commit 1c1c0cb

Please sign in to comment.