diff options
author | Tom Tromey <tom@tromey.com> | 2022-04-17 19:44:20 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-04-20 09:28:16 -0600 |
commit | e19b2d94653dd4a7523a9e9b62020a63dac39439 (patch) | |
tree | 19d21478ff945ffc1308932bac7bc9e9370f4fb2 /gdb/infcmd.c | |
parent | f66b5363431ccf23debbdfacb63c09c2c57b6ada (diff) | |
download | gdb-e19b2d94653dd4a7523a9e9b62020a63dac39439.zip gdb-e19b2d94653dd4a7523a9e9b62020a63dac39439.tar.gz gdb-e19b2d94653dd4a7523a9e9b62020a63dac39439.tar.bz2 |
Replace symbol_objfile with symbol::objfile
This turns symbol_objfile into a method on symbol.
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r-- | gdb/infcmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 84eb6e5..c7f339a 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -1086,7 +1086,7 @@ jump_command (const char *arg, int from_tty) struct obj_section *section; fixup_symbol_section (sfn, 0); - section = sfn->obj_section (symbol_objfile (sfn)); + section = sfn->obj_section (sfn->objfile ()); if (section_is_overlay (section) && !section_is_mapped (section)) { |