From 3e0757c1012f2ff75bdb50eecfb585ec3982dc4d Mon Sep 17 00:00:00 2001 From: isaacs Date: Thu, 28 Jun 2012 22:06:53 -0700 Subject: [PATCH] lint --- lib/fs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fs.js b/lib/fs.js index 4aac1923a5f..7c622375e3a 100644 --- a/lib/fs.js +++ b/lib/fs.js @@ -1108,7 +1108,7 @@ fs.realpath = function realpath(p, cache, cb) { // On windows, check that the root exists. On unix there is no need. if (isWindows && !knownHard[base]) { - fs.lstat(base, function (err) { + fs.lstat(base, function(err) { if (err) return cb(err); knownHard[base] = true; LOOP();