diff options
Diffstat (limited to 'gdb/auxv.c')
-rw-r--r-- | gdb/auxv.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -81,7 +81,6 @@ ld_so_xfer_auxv (gdb_byte *readbuf, ULONGEST offset, ULONGEST len, ULONGEST *xfered_len) { - struct bound_minimal_symbol msym; CORE_ADDR data_address, pointer_address; gdbarch *arch = current_inferior ()->arch (); type *ptr_type = builtin_type (arch)->builtin_data_ptr; @@ -91,7 +90,7 @@ ld_so_xfer_auxv (gdb_byte *readbuf, LONGEST retval; size_t block; - msym = lookup_minimal_symbol ("_dl_auxv", NULL, NULL); + bound_minimal_symbol msym = lookup_minimal_symbol ("_dl_auxv", NULL, NULL); if (msym.minsym == NULL) return TARGET_XFER_E_IO; |