* spu-linux-nat.c (spu_symbol_file_add_from_memory): Add NULL

"parent" parameter to symbol_file_add_from_bfd call.
This commit is contained in:
Ulrich Weigand 2011-05-06 19:51:12 +00:00
parent 9c06b0b428
commit 7845b0133d
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2011-05-06 Ulrich Weigand <uweigand@de.ibm.com>
* spu-linux-nat.c (spu_symbol_file_add_from_memory): Add NULL
"parent" parameter to symbol_file_add_from_bfd call.
2011-05-06 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>

View File

@ -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);
}