Sanitizing source files in Skia_Periodic_House_Keeping

git-svn-id: http://skia.googlecode.com/svn/trunk@5539 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tools/render_pictures_main.cpp b/tools/render_pictures_main.cpp
index 613ec94..87d5d4b 100644
--- a/tools/render_pictures_main.cpp
+++ b/tools/render_pictures_main.cpp
@@ -126,7 +126,7 @@
 
     SkDebugf("drawing... [%i %i] %s\n", picture.width(), picture.height(),
              inputPath.c_str());
-    
+
 
     // rescale to avoid memory issues allcoating a very large offscreen
     SkPicture* pic = &picture;
@@ -136,13 +136,13 @@
     if (area_too_big(picture.width(), picture.height(), &newSize)) {
         pic = new SkPicture;
         aur.reset(pic);
-        
+
         SkCanvas* canvas = pic->beginRecording(newSize.width(), newSize.height());
         SkScalar scale = SkIntToScalar(newSize.width()) / picture.width();
         canvas->scale(scale, scale);
         canvas->drawPicture(picture);
         pic->endRecording();
-        
+
         SkDebugf("... rescaling to [%d %d] to avoid overly large allocations\n",
                  newSize.width(), newSize.height());
     }