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

Line 851, missing ) after argument list, as reported by Dribble.

parent a271d677
No related branches found
No related tags found
No related merge requests found
...@@ -848,7 +848,7 @@ BinkP.prototype.sendCmd = function(cmd, data) ...@@ -848,7 +848,7 @@ BinkP.prototype.sendCmd = function(cmd, data)
var len = data.length+1; var len = data.length+1;
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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment