| Index: bfd/plugin.c
|
| diff --git a/bfd/plugin.c b/bfd/plugin.c
|
| index 8d2c4b2014f782d23444e5280059e62cbba40a74..3306607fe5c5e43510ede9372daec1ed38656e45 100644
|
| --- a/bfd/plugin.c
|
| +++ b/bfd/plugin.c
|
| @@ -137,7 +137,7 @@ add_symbols (void * handle,
|
| {
|
| bfd *abfd = handle;
|
| struct plugin_data_struct *plugin_data =
|
| - bfd_alloc (abfd, sizeof (plugin_data_struct));;
|
| + bfd_alloc (abfd, sizeof (plugin_data_struct));
|
|
|
| plugin_data->nsyms = nsyms;
|
| plugin_data->syms = syms;
|
| @@ -400,7 +400,7 @@ static flagword
|
| convert_flags (const struct ld_plugin_symbol *sym)
|
| {
|
| switch (sym->def)
|
| - {
|
| + {
|
| case LDPK_DEF:
|
| case LDPK_COMMON:
|
| case LDPK_UNDEF:
|
| @@ -432,7 +432,7 @@ bfd_plugin_canonicalize_symtab (bfd *abfd,
|
|
|
| for (i = 0; i < nsyms; i++)
|
| {
|
| - asymbol *s = bfd_alloc (abfd, sizeof (asymbol));
|
| + asymbol *s = bfd_alloc (abfd, sizeof (asymbol));
|
|
|
| BFD_ASSERT (s);
|
| alocation[i] = s;
|
|
|