Result of running tools/sanitize_source_files.py (which was added in https://codereview.appspot.com/6465078/)

This CL is part I of IV (I broke down the 1280 files into 4 CLs).
Review URL: https://codereview.appspot.com/6485054

git-svn-id: http://skia.googlecode.com/svn/trunk@5262 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/forth/ForthTests.cpp b/forth/ForthTests.cpp
index 7b9dd5b..08ab7f3 100644
--- a/forth/ForthTests.cpp
+++ b/forth/ForthTests.cpp
@@ -16,7 +16,7 @@
     void reportFailure(const char expression[], const char file[], int line);
     void reportFailure(const char msg[]);
 };
-    
+
 typedef void (*ForthWordTestProc)(ForthWord*, ForthEngine*, Reporter*);
 
 #define FORTH_ASSERT(reporter, expression)      \
@@ -385,7 +385,7 @@
 
     for (size_t i = 0; i < SK_ARRAY_COUNT(gRecs); i++) {
         ForthEngine engine(NULL);
-        
+
         ForthWord* word = env.findWord(gRecs[i].fName);
         if (NULL == word) {
             SkString str;
@@ -398,7 +398,7 @@
             gRecs[i].fProc(word, &engine, &reporter);
         }
     }
-    
+
     if (0 == reporter.fFailureCount) {
         SkDebugf("--- success!\n");
     } else {