From d749b7ccbdd301098fee7849ef5501d98e1e196b Mon Sep 17 00:00:00 2001
From: sbarman <sbarman@L3CWZ5T.(none)>
Date: Wed, 6 Jul 2011 10:44:01 -0700
Subject: [PATCH] cleanup

---
 pdf.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pdf.js b/pdf.js
index b07ef74e7..d183072c1 100644
--- a/pdf.js
+++ b/pdf.js
@@ -4792,9 +4792,9 @@ var PDFImage = (function() {
     this.height = dict.get2('Height', 'H');
 
     if (this.width < 1 || this.height < 1)
-  error('Invalid image width or height');
+      error('Invalid image width or height');
 
-this.interpolate = dict.get2('Interpolate', 'I') || false;
+    this.interpolate = dict.get2('Interpolate', 'I') || false;
     this.imageMask = dict.get2('ImageMask', 'IM') || false;
 
     var bitsPerComponent = image.bitsPerComponent;