diff options
author | Guinevere Larsen <guinevere@redhat.com> | 2025-04-30 09:28:34 -0300 |
---|---|---|
committer | Guinevere Larsen <guinevere@redhat.com> | 2025-04-30 09:28:34 -0300 |
commit | cebc30425e76ef93554c3118d5166a20bb149d83 (patch) | |
tree | c4c36847061f2fa1143abac0eb9901007921a288 /gdb/progspace.c | |
parent | aab91c55c3371b459f923138f2a910e0d223f229 (diff) | |
download | binutils-cebc30425e76ef93554c3118d5166a20bb149d83.zip binutils-cebc30425e76ef93554c3118d5166a20bb149d83.tar.gz binutils-cebc30425e76ef93554c3118d5166a20bb149d83.tar.bz2 |
gdb/progspace: fix formatting issue
The previous commit had a small styling issue that I forgot to fix
before pushing. This commit fixes the styling issue.
Diffstat (limited to 'gdb/progspace.c')
-rw-r--r-- | gdb/progspace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/progspace.c b/gdb/progspace.c index fcfdbd7..eda6379 100644 --- a/gdb/progspace.c +++ b/gdb/progspace.c @@ -205,7 +205,7 @@ program_space::exec_close () Clear ebfd before doing so to prevent recursion. We move it to another ref_ptr instead of saving it to a raw pointer to avoid it looking like possible use-after-free. */ - gdb_bfd_ref_ptr saved_ebfd = std::move(ebfd); + gdb_bfd_ref_ptr saved_ebfd = std::move (ebfd); ebfd.reset (nullptr); ebfd_mtime = 0; |