We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7616500 commit 3d81e68Copy full SHA for 3d81e68
lib/server/parse-udp.js
@@ -71,5 +71,5 @@ function fromUInt64 (buf) {
71
var low = buf.readUInt32BE(4) | 0
72
var lowUnsigned = (low >= 0) ? low : TWO_PWR_32 + low
73
74
- return high * TWO_PWR_32 + lowUnsigned
+ return (high * TWO_PWR_32) + lowUnsigned
75
}
0 commit comments