Close the paren.
// rdar://11076938

llvm-svn: 153151
diff --git a/clang/lib/Rewrite/RewriteModernObjC.cpp b/clang/lib/Rewrite/RewriteModernObjC.cpp
index a164f74..101d35e 100644
--- a/clang/lib/Rewrite/RewriteModernObjC.cpp
+++ b/clang/lib/Rewrite/RewriteModernObjC.cpp
@@ -5718,7 +5718,7 @@
   Result += ".cache = "; Result += "&_objc_empty_cache"; Result += ";\n";
   Result += "}\n";
   
-  Result += "#pragma section(\".objc_inithooks$B\", long, read, write\n";
+  Result += "#pragma section(\".objc_inithooks$B\", long, read, write)\n";
   Result += "__declspec(allocate(\".objc_inithooks$B\")) ";
   Result += "static void *OBJC_CLASS_SETUP2_$_";
   Result += CDecl->getNameAsString();
@@ -5805,7 +5805,7 @@
   Result += ".cls = "; Result += "&OBJC_CLASS_$_"; Result += ClassName;
   Result += ";\n}\n";
   
-  Result += "#pragma section(\".objc_inithooks$B\", long, read, write\n";
+  Result += "#pragma section(\".objc_inithooks$B\", long, read, write)\n";
   Result += "__declspec(allocate(\".objc_inithooks$B\")) ";
   Result += "static void *OBJC_CATEGORY_SETUP2_$_";
   Result += ClassDecl->getNameAsString();