diff options
Diffstat (limited to 'gdb/x86-tdep.c')
-rw-r--r-- | gdb/x86-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/x86-tdep.c b/gdb/x86-tdep.c index 5d7aa95..6646b11 100644 --- a/gdb/x86-tdep.c +++ b/gdb/x86-tdep.c @@ -1,6 +1,6 @@ /* Target-dependent code for X86-based targets. - Copyright (C) 2018-2024 Free Software Foundation, Inc. + Copyright (C) 2018-2025 Free Software Foundation, Inc. This file is part of GDB. @@ -42,7 +42,7 @@ bool x86_in_indirect_branch_thunk (CORE_ADDR pc, const char * const *register_names, int lo, int hi) { - struct bound_minimal_symbol bmfun = lookup_minimal_symbol_by_pc (pc); + bound_minimal_symbol bmfun = lookup_minimal_symbol_by_pc (pc); if (bmfun.minsym == nullptr) return false; |