Skip to content

Commit

Permalink
Fix omitted var keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
landryraccoon committed Mar 28, 2014
1 parent 0150fc7 commit 2349105
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/devices/ios/remote-debugger.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ RemoteDebugger.prototype.connect = function (cb, pageChangeCb) {
}.bind(this));
this.socket.on('data', this.receive.bind(this));

port = process.env.REMOTE_DEBUGGER_PORT || 27753;
var port = process.env.REMOTE_DEBUGGER_PORT || 27753;
this.socket.connect(port, '::1', function () {
this.logger.info("Debugger socket connected to " +
this.socket.remoteAddress + ':' + this.socket.remotePort);
Expand Down

0 comments on commit 2349105

Please sign in to comment.