From fcffbc380441b997f23dbe9ea14b52155c9760c9 Mon Sep 17 00:00:00 2001 From: notmasteryet Date: Fri, 17 Feb 2012 17:35:48 -0600 Subject: [PATCH] Fix `Line 648, E:0001: Extra space after "]"` --- src/stream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream.js b/src/stream.js index 91279f7a2..f76a07b4c 100644 --- a/src/stream.js +++ b/src/stream.js @@ -645,7 +645,7 @@ var PredictorStream = (function PredictorStreamClosure() { } } else if (bits === 8) { for (var i = 0; i < colors; ++i) - buffer[pos++] = rawBytes[i]; + buffer[pos++] = rawBytes[i]; for (; i < rowBytes; ++i) { buffer[pos] = buffer[pos - colors] + rawBytes[i]; pos++;