Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5096)

Unified Diff: bfd/plugin.c

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « bfd/peicode.h ('k') | bfd/po/BLD-POTFILES.in » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « bfd/peicode.h ('k') | bfd/po/BLD-POTFILES.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698