Code cleanup.

llvm-svn: 211697
diff --git a/llvm/lib/Support/Path.cpp b/llvm/lib/Support/Path.cpp
index 535394c..59c3798 100644
--- a/llvm/lib/Support/Path.cpp
+++ b/llvm/lib/Support/Path.cpp
@@ -927,7 +927,7 @@
 }
 
 /// @brief Identify the magic in magic.
-  file_magic identify_magic(StringRef Magic) {
+file_magic identify_magic(StringRef Magic) {
   if (Magic.size() < 4)
     return file_magic::unknown;
   switch ((unsigned char)Magic[0]) {