Really fix typo :-(

llvm-svn: 134436
diff --git a/llvm/lib/Object/COFFObjectFile.cpp b/llvm/lib/Object/COFFObjectFile.cpp
index aa079f3..e4b13b2 100644
--- a/llvm/lib/Object/COFFObjectFile.cpp
+++ b/llvm/lib/Object/COFFObjectFile.cpp
@@ -311,7 +311,7 @@
     // Check the PE header. ("PE\0\0")
     StringRef Actual(reinterpret_cast<const char *>(base() + HeaderStart), 4);
     StringRef Expected("PE\0\0", 4);
-    if (Actual != Expect) {
+    if (Actual != Expected) {
       ec = object_error::parse_failed;
       return;
     }