diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2011-05-06 19:51:12 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2011-05-06 19:51:12 +0000 |
commit | 7845b0133d5bcfc774246573cda7b369e226a6da (patch) | |
tree | 70ce7dba80797aa2e41b454fbb1b282bc949b8c7 /gdb/spu-linux-nat.c | |
parent | 9c06b0b4285bf0abffaa37bda5b4bf686691d805 (diff) | |
download | gdb-7845b0133d5bcfc774246573cda7b369e226a6da.zip gdb-7845b0133d5bcfc774246573cda7b369e226a6da.tar.gz gdb-7845b0133d5bcfc774246573cda7b369e226a6da.tar.bz2 |
* spu-linux-nat.c (spu_symbol_file_add_from_memory): Add NULL
"parent" parameter to symbol_file_add_from_bfd call.
Diffstat (limited to 'gdb/spu-linux-nat.c')
-rw-r--r-- | gdb/spu-linux-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/spu-linux-nat.c b/gdb/spu-linux-nat.c index db47292..a4bcbf7 100644 --- a/gdb/spu-linux-nat.c +++ b/gdb/spu-linux-nat.c @@ -375,7 +375,7 @@ spu_symbol_file_add_from_memory (int inferior_fd) nbfd = spu_bfd_open (addr); if (nbfd) symbol_file_add_from_bfd (nbfd, SYMFILE_VERBOSE | SYMFILE_MAINLINE, - NULL, 0); + NULL, 0, NULL); } |