summaryrefslogtreecommitdiff
path: root/lib/internal/buffer.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/internal/buffer.js')
-rw-r--r--lib/internal/buffer.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/internal/buffer.js b/lib/internal/buffer.js
index 9d86a8e722..a14909e491 100644
--- a/lib/internal/buffer.js
+++ b/lib/internal/buffer.js
@@ -738,7 +738,7 @@ function writeUInt8(value, offset = 0) {
function writeUIntBE(value, offset, byteLength) {
if (byteLength === 6)
- return writeU_Int48BE(this, value, offset, 0, 0xffffffffffffff);
+ return writeU_Int48BE(this, value, offset, 0, 0xffffffffffff);
if (byteLength === 5)
return writeU_Int40BE(this, value, offset, 0, 0xffffffffff);
if (byteLength === 3)