Rename clang_constructUSR_ObjCategory to clang_constructUSR_ObjCCategory.
(there was a missing 'C').

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@98554 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index ff7dd10..15afe8f 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -1091,7 +1091,7 @@
  * \brief Construct a USR for a specified Objective-C category.
  */
 CINDEX_LINKAGE CXString
-  clang_constructUSR_ObjCategory(const char *class_name,
+  clang_constructUSR_ObjCCategory(const char *class_name,
                                  const char *category_name);
 
 /**
diff --git a/tools/CIndex/CIndex.exports b/tools/CIndex/CIndex.exports
index a73114c..fe0396d 100644
--- a/tools/CIndex/CIndex.exports
+++ b/tools/CIndex/CIndex.exports
@@ -3,7 +3,7 @@
 _clang_codeCompleteGetDiagnostic
 _clang_codeCompleteGetNumDiagnostics
 _clang_constructUSR_ObjCClass
-_clang_constructUSR_ObjCategory
+_clang_constructUSR_ObjCCategory
 _clang_constructUSR_ObjCIvar
 _clang_constructUSR_ObjCMethod
 _clang_constructUSR_ObjCProtocol
diff --git a/tools/CIndex/CIndexUSRs.cpp b/tools/CIndex/CIndexUSRs.cpp
index 234c03c..9dbbd35 100644
--- a/tools/CIndex/CIndexUSRs.cpp
+++ b/tools/CIndex/CIndexUSRs.cpp
@@ -285,7 +285,7 @@
   return createCXString(SUG.str(), true);
 }
 
-CXString clang_constructUSR_ObjCategory(const char *class_name,
+CXString clang_constructUSR_ObjCCategory(const char *class_name,
                                         const char *category_name) {
   StringUSRGenerator SUG;
   SUG->GenObjCCategory(class_name, category_name);