From b82d477ce1f4c4ebc7b575d89e19133087db409d Mon Sep 17 00:00:00 2001 From: echicken <> Date: Mon, 11 Jul 2016 19:38:03 +0000 Subject: [PATCH] Line 852 syntax, as reported by Dribble - removed extra ')'. --- exec/load/binkp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/load/binkp.js b/exec/load/binkp.js index 5ae89826ce..235388605c 100644 --- a/exec/load/binkp.js +++ b/exec/load/binkp.js @@ -849,7 +849,7 @@ BinkP.prototype.sendCmd = function(cmd, data) len |= 0x8000; // We'll send it all in one go to avoid sending small packets... var sstr = this.send_buf(ascii((len & 0xff00)>>8) + ascii(len & 0xff) + ascii(cmd) + data); - if (this.sock.send(sstr) !== sstr.length)) + if (this.sock.send(sstr) !== sstr.length) return false; switch(cmd) { case this.command.M_EOB: -- GitLab