Skip to content

Commit 3d81e68

Browse files
committed
standard
1 parent 7616500 commit 3d81e68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/server/parse-udp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,5 @@ function fromUInt64 (buf) {
7171
var low = buf.readUInt32BE(4) | 0
7272
var lowUnsigned = (low >= 0) ? low : TWO_PWR_32 + low
7373

74-
return high * TWO_PWR_32 + lowUnsigned
74+
return (high * TWO_PWR_32) + lowUnsigned
7575
}

0 commit comments

Comments
 (0)