Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Aug 27, 2012
1 parent e5d95ba commit 985e3a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/path.js
Expand Up @@ -450,4 +450,4 @@ if (isWindows) {
exports._makeLong = function(path) {
return path;
};
}
}
2 changes: 1 addition & 1 deletion lib/timers.js
Expand Up @@ -308,7 +308,7 @@ function processImmediate() {

if (immediate.domain) immediate.domain.exit();
}
};
}


exports.setImmediate = function(callback) {
Expand Down
4 changes: 2 additions & 2 deletions src/node.js
Expand Up @@ -580,13 +580,13 @@

wrap.unref();

wrap.onsignal = function () { process.emit(type); };
wrap.onsignal = function() { process.emit(type); };

var signum = startup.lazyConstants()[type];
var r = wrap.start(signum);
if (r) {
wrap.close();
throw errnoException(errno, "uv_signal_start");
throw errnoException(errno, 'uv_signal_start');
}

signalWraps[type] = wrap;
Expand Down

0 comments on commit 985e3a2

Please sign in to comment.