Sanitizing source files in Skia_Nightly_House_Keeping

git-svn-id: http://skia.googlecode.com/svn/trunk@5346 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/bench/benchmain.cpp b/bench/benchmain.cpp
index dfde94a..e6f6620 100644
--- a/bench/benchmain.cpp
+++ b/bench/benchmain.cpp
@@ -949,19 +949,19 @@
                 // otherwise output only the average
                 if (!logPerIter) {
                     fWallStr.set(" msecs = ");
-                    fWallStr.appendf(normalTimeFormat.c_str(), 
+                    fWallStr.appendf(normalTimeFormat.c_str(),
                         printMin ? fWallMin : fWallSum / repeatDraw);
                     fCpuStr.set(" cmsecs = ");
-                    fCpuStr.appendf(normalTimeFormat.c_str(), 
+                    fCpuStr.appendf(normalTimeFormat.c_str(),
                         printMin ? fCpuMin : fCpuSum / repeatDraw);
                     fTruncatedWallStr.set(" Wmsecs = ");
-                    fTruncatedWallStr.appendf(normalTimeFormat.c_str(), 
+                    fTruncatedWallStr.appendf(normalTimeFormat.c_str(),
                         printMin ? fTruncatedWallMin : fTruncatedWallSum / repeatDraw);
                     fTruncatedCpuStr.set(" Cmsecs = ");
-                    fTruncatedCpuStr.appendf(normalTimeFormat.c_str(), 
+                    fTruncatedCpuStr.appendf(normalTimeFormat.c_str(),
                         printMin ? fTruncatedCpuMin : fTruncatedCpuSum / repeatDraw);
                     fGpuStr.set(" gmsecs = ");
-                    fGpuStr.appendf(normalTimeFormat.c_str(), 
+                    fGpuStr.appendf(normalTimeFormat.c_str(),
                         printMin ? fGpuMin : fGpuSum / repeatDraw);
                 }
                 SkString str;