Skip to content

Commit

Permalink
there are { low, high } without underscores
Browse files Browse the repository at this point in the history
  • Loading branch information
igorklopov committed Jul 18, 2016
1 parent f10e8d7 commit f9755df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/serialize.js
Expand Up @@ -249,9 +249,9 @@ XdrWriter.prototype.addInt = function (value) {
XdrWriter.prototype.addInt64 = function (value) {
this.ensure(8);
var l = Long.fromNumber(value);
this.buffer.writeInt32BE(l.high_, this.pos);
this.buffer.writeInt32BE(l.high, this.pos);
this.pos += 4;
this.buffer.writeInt32BE(l.low_, this.pos);
this.buffer.writeInt32BE(l.low, this.pos);
this.pos += 4;
};

Expand Down

0 comments on commit f9755df

Please sign in to comment.