Skip to content

Commit 24dfa1e

Browse files
authored
Fix an option typo in error message (#22)
Thanks @euler0
1 parent 5964b23 commit 24dfa1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dsdump/XRMachOLibrary.mm

+1-1
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ - (instancetype)initWithPath:(NSString*)path {
353353
} else if (magic == FAT_MAGIC || magic == FAT_CIGAM) {
354354
// Could only have gotten here if --arch is not specified
355355
dprintf(STDERR_FILENO, "%sMultiple arches found: %s%s\n", dcolor(DSCOLOR_RED), [self printAllArchitectures].UTF8String, color_end());
356-
dprintf(STDERR_FILENO, "%sUse --arches (-a) (or ARCH env var) to specify arch%s\n", dcolor(DSCOLOR_RED), color_end());
356+
dprintf(STDERR_FILENO, "%sUse --arch (-a) (or ARCH env var) to specify arch%s\n", dcolor(DSCOLOR_RED), color_end());
357357
exit(1);
358358
} else if (magic == FAT_MAGIC_64 || magic == FAT_CIGAM_64) {
359359
printf("FAT MAGIC 64 headers not implemented... tell Derek what module is using this\n");

0 commit comments

Comments
 (0)