Skip to content
Snippets Groups Projects
Commit b82d477c authored by echicken's avatar echicken
Browse files

Line 852 syntax, as reported by Dribble - removed extra ')'.

parent 49621b1b
No related branches found
No related tags found
No related merge requests found
...@@ -849,7 +849,7 @@ BinkP.prototype.sendCmd = function(cmd, data) ...@@ -849,7 +849,7 @@ BinkP.prototype.sendCmd = function(cmd, data)
len |= 0x8000; len |= 0x8000;
// We'll send it all in one go to avoid sending small packets... // 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); 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; return false;
switch(cmd) { switch(cmd) {
case this.command.M_EOB: case this.command.M_EOB:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment