]> git.ipfire.org Git - thirdparty/qemu.git/blobdiff - gdbstub.c
Update version for v5.0.0-rc3 release
[thirdparty/qemu.git] / gdbstub.c
index 013fb1ac0f1872964c803e0bff5b154c18b04330..171e150950902113658f36b6b933fcc9850747db 100644 (file)
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -2060,8 +2060,8 @@ static void handle_query_thread_extra(GdbCmdContext *gdb_ctx, void *user_ctx)
         /* Print the CPU model and name in multiprocess mode */
         ObjectClass *oc = object_get_class(OBJECT(cpu));
         const char *cpu_model = object_class_get_name(oc);
-        g_autofree char *cpu_name;
-        cpu_name  = object_get_canonical_path_component(OBJECT(cpu));
+        g_autofree char *cpu_name =
+            object_get_canonical_path_component(OBJECT(cpu));
         g_string_printf(rs, "%s %s [%s]", cpu_model, cpu_name,
                         cpu->halted ? "halted " : "running");
     } else {