[PATCH] D135318: [NFC] Fix typo in error message.

Daniel Rodríguez Troitiño via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 5 13:40:06 PDT 2022


drodriguez created this revision.
drodriguez added reviewers: clayborg, JDevlieghere, aprantl.
Herald added a project: All.
drodriguez requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Fix typo in error message. No other changes


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D135318

Files:
  llvm/tools/dsymutil/dsymutil.cpp


Index: llvm/tools/dsymutil/dsymutil.cpp
===================================================================
--- llvm/tools/dsymutil/dsymutil.cpp
+++ llvm/tools/dsymutil/dsymutil.cpp
@@ -798,7 +798,7 @@
           break;
         FileOffset += stat->getSize();
         if (FileOffset > UINT32_MAX) {
-          WithColor::error() << "the univesral binary has a slice with an "
+          WithColor::error() << "the universal binary has a slice with an "
               "offset exceeds 4GB and will produce an invalid Mach-O file.";
           return EXIT_FAILURE;
         }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D135318.465540.patch
Type: text/x-patch
Size: 575 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221005/d81118c6/attachment-0001.bin>


More information about the llvm-commits mailing list