Skip to content

Commit

Permalink
[NFC] Fix typo in error message.
Browse files Browse the repository at this point in the history
Fix typo in error message. No other changes

Differential Revision: https://reviews.llvm.org/D135318
  • Loading branch information
drodriguez committed Oct 6, 2022
1 parent 844b84a commit 1a51167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/tools/dsymutil/dsymutil.cpp
Expand Up @@ -798,7 +798,7 @@ int dsymutil_main(int argc, char **argv) {
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;
}
Expand Down

0 comments on commit 1a51167

Please sign in to comment.