diff options
Diffstat (limited to 'gdb/inf-ptrace.c')
-rw-r--r-- | gdb/inf-ptrace.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/inf-ptrace.c b/gdb/inf-ptrace.c index e6729ac..740798f 100644 --- a/gdb/inf-ptrace.c +++ b/gdb/inf-ptrace.c @@ -649,11 +649,11 @@ static int inf_ptrace_auxv_parse (struct target_ops *ops, gdb_byte **readptr, gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp) { - struct type *int_type = builtin_type (target_gdbarch)->builtin_int; - struct type *ptr_type = builtin_type (target_gdbarch)->builtin_data_ptr; + struct type *int_type = builtin_type (target_gdbarch ())->builtin_int; + struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr; const int sizeof_auxv_type = TYPE_LENGTH (int_type); const int sizeof_auxv_val = TYPE_LENGTH (ptr_type); - enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch); + enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ()); gdb_byte *ptr = *readptr; if (endptr == ptr) |