Skip to content

Commit

Permalink
Fix an option typo in error message (#22)
Browse files Browse the repository at this point in the history
Thanks @euler0
  • Loading branch information
euler0 authored Apr 6, 2022
1 parent 5964b23 commit 24dfa1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dsdump/XRMachOLibrary.mm
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ - (instancetype)initWithPath:(NSString*)path {
} else if (magic == FAT_MAGIC || magic == FAT_CIGAM) {
// Could only have gotten here if --arch is not specified
dprintf(STDERR_FILENO, "%sMultiple arches found: %s%s\n", dcolor(DSCOLOR_RED), [self printAllArchitectures].UTF8String, color_end());
dprintf(STDERR_FILENO, "%sUse --arches (-a) (or ARCH env var) to specify arch%s\n", dcolor(DSCOLOR_RED), color_end());
dprintf(STDERR_FILENO, "%sUse --arch (-a) (or ARCH env var) to specify arch%s\n", dcolor(DSCOLOR_RED), color_end());
exit(1);
} else if (magic == FAT_MAGIC_64 || magic == FAT_CIGAM_64) {
printf("FAT MAGIC 64 headers not implemented... tell Derek what module is using this\n");
Expand Down

0 comments on commit 24dfa1e

Please sign in to comment.