From 7138e8037ef3e28085a119b5675480eb8628ee3f Mon Sep 17 00:00:00 2001 From: Brian Hammond Date: Fri, 30 Apr 2010 20:51:49 -0400 Subject: [PATCH] tabs -> spaces --- lib/redis-client.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/redis-client.js b/lib/redis-client.js index b71870e..4332ed4 100644 --- a/lib/redis-client.js +++ b/lib/redis-client.js @@ -742,8 +742,8 @@ Client.prototype.sendCommand = function () { if (this.stream.writable) { this.originalCommands.push(originalCommand); - var outBuffer = new Buffer(offset); - this.requestBuffer.copy(outBuffer, 0, 0, offset); + var outBuffer = new Buffer(offset); + this.requestBuffer.copy(outBuffer, 0, 0, offset); this.stream.write(outBuffer, 'binary'); if (exports.debugMode)