From cebc30425e76ef93554c3118d5166a20bb149d83 Mon Sep 17 00:00:00 2001 From: Guinevere Larsen Date: Wed, 30 Apr 2025 09:28:34 -0300 Subject: [PATCH] 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. --- gdb/progspace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/progspace.c b/gdb/progspace.c index fcfdbd7789f..eda63790aec 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; -- 2.47.3