summaryrefslogtreecommitdiff
path: root/gdb/spu-linux-nat.c
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2011-05-06 19:51:11 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2011-05-06 19:51:11 +0000
commitf0a0cc334fd5716ef73b69516bd165d3cb189a9e (patch)
tree8764f90f761e167b7b46027d7affef8e53538325 /gdb/spu-linux-nat.c
parent0821ef12d3343f090d97e713ebe1df7ba8e0289d (diff)
downloadgdb-f0a0cc334fd5716ef73b69516bd165d3cb189a9e.tar.gz
* 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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/spu-linux-nat.c b/gdb/spu-linux-nat.c
index db47292228f..a4bcbf74c81 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);
}