From 1256df76bc47847cf377e40ca205049d55790f49 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 15 Mar 2010 09:02:52 -0700 Subject: [PATCH] remove whitespace --- src/node.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node.js b/src/node.js index e2bf8b8aab..6eb737267d 100644 --- a/src/node.js +++ b/src/node.js @@ -42,7 +42,7 @@ node.dns.createConnection = removed("node.dns.createConnection() has moved. Use /**********************************************************************/ -// Module +// Module var internalModuleCache = {}; var extensionCache = {}; @@ -351,7 +351,7 @@ process.fs.readFile = function (path, encoding_, callback) { var callback = (typeof(callback_) == 'function' ? callback_ : null); process.fs.open(path, process.O_RDONLY, 0666, function (err, fd) { if (err) { - if (callback) callback(err); + if (callback) callback(err); } else { readAll(fd, 0, "", encoding, callback); }