From: Rafael Espindola Date: Tue, 5 Jul 2011 19:13:27 +0000 (+0000) Subject: Fix typo. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5ac795c56f27735085be5500a1b43f09ceb2bfc9;p=oota-llvm.git Fix typo. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134433 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Object/COFFObjectFile.cpp b/lib/Object/COFFObjectFile.cpp index 00038071ead..aa079f3c3c3 100644 --- a/lib/Object/COFFObjectFile.cpp +++ b/lib/Object/COFFObjectFile.cpp @@ -310,8 +310,8 @@ COFFObjectFile::COFFObjectFile(MemoryBuffer *Object, error_code &ec) HeaderStart += *reinterpret_cast(base() + 0x3c); // Check the PE header. ("PE\0\0") StringRef Actual(reinterpret_cast(base() + HeaderStart), 4); - StringRef Expcted("PE\0\0", 4); - if (Actual != Expcted) { + StringRef Expected("PE\0\0", 4); + if (Actual != Expect) { ec = object_error::parse_failed; return; }