Skip to content

Commit

Permalink
Hide this 'code slot size' warning under bin.verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Jul 30, 2019
1 parent 33bbd37 commit ac0e68a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libr/bin/format/mach0/mach0.c
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,9 @@ static bool parse_signature(struct MACH0_(obj_t) *bin, ut64 off) {
free (ident);
}
} else {
eprintf ("Invalid code slot size\n");
if (bin->verbose) {
eprintf ("Invalid code slot size\n");
}
}
}
break;
Expand Down

0 comments on commit ac0e68a

Please sign in to comment.