Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/dgram/offset-length.js')
-rw-r--r--benchmark/dgram/offset-length.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/dgram/offset-length.js b/benchmark/dgram/offset-length.js
index ce9f4b025ad..5b7762b21e7 100644
--- a/benchmark/dgram/offset-length.js
+++ b/benchmark/dgram/offset-length.js
@@ -37,7 +37,7 @@ function server() {
var socket = dgram.createSocket('udp4');
function onsend() {
- if (sent++ % num == 0)
+ if (sent++ % num === 0)
for (var i = 0; i < num; i++)
socket.send(chunk, 0, chunk.length, PORT, '127.0.0.1', onsend);
}