* objcopy.c (strip_main, copy_main): Add missing 'break' in switch.

This commit is contained in:
David MacKenzie 1994-02-11 23:56:49 +00:00
parent 30e441ca45
commit 704bbd0dc3
2 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,16 @@
Fri Feb 11 15:54:51 1994 David J. Mackenzie (djm@thepub.cygnus.com)
* objcopy.c (strip_main, copy_main): Add missing 'break' in switch.
Mon Feb 7 19:45:52 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* objdump.c (disassemble_data): Handle bfd_arch_powerpc.
Sun Feb 6 22:08:20 1994 David J. Mackenzie (djm@thepub.cygnus.com)
* strings.c objdump.c nlmconv.c objcopy.c nm.c ar.c size.c (main):
Call xmalloc_set_program_name.
Fri Feb 4 10:46:01 1994 David J. Mackenzie (djm@thepub.cygnus.com)
* objcopy.c (filter_bytes): Make MEMHUNK a char *, not PTR, so we

View File

@ -696,6 +696,7 @@ strip_main (argc, argv)
{
case 'I':
input_target = optarg;
break;
case 'O':
output_target = optarg;
break;
@ -803,6 +804,7 @@ copy_main (argc, argv)
case 'I':
case 's': /* "source" - 'I' is preferred */
input_target = optarg;
break;
case 'O':
case 'd': /* "destination" - 'O' is preferred */
output_target = optarg;
@ -890,6 +892,7 @@ main (argc, argv)
char *argv[];
{
program_name = argv[0];
xmalloc_set_program_name (program_name);
strip_symbols = strip_undef;
discard_locals = locals_undef;