From: notmasteryet Date: Fri, 17 Feb 2012 23:35:48 +0000 (-0600) Subject: Fix `Line 648, E:0001: Extra space after "]"` X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=fcffbc380441b997f23dbe9ea14b52155c9760c9;p=pdf.js.git Fix `Line 648, E:0001: Extra space after "]"` --- diff --git a/src/stream.js b/src/stream.js index 91279f7..f76a07b 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++;