diff options
| author | Markus Armbruster <armbru@redhat.com> | 2020-12-11 18:11:34 +0100 |
|---|---|---|
| committer | Markus Armbruster <armbru@redhat.com> | 2020-12-19 10:38:35 +0100 |
| commit | 20076f4a8c3b275272d0b907f37c126bd91ec1b9 (patch) | |
| tree | d031d84197d97711dc313f3e066b5657c78780c5 /monitor/misc.c | |
| parent | 436054e22f8447692196ddae7012f6083140e461 (diff) | |
| download | focaccia-qemu-20076f4a8c3b275272d0b907f37c126bd91ec1b9.tar.gz focaccia-qemu-20076f4a8c3b275272d0b907f37c126bd91ec1b9.zip | |
monitor: Use GString instead of QString for output buffer
GString has a richer set of string operations than QString. It should be preferred to QString except where we need a QObject or reference counting. We don't here. Switch to GString, and put its richer interface to use. Cc: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20201211171152.146877-3-armbru@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'monitor/misc.c')
| -rw-r--r-- | monitor/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/monitor/misc.c b/monitor/misc.c index 33d0dae2e8..10444b4e7a 100644 --- a/monitor/misc.c +++ b/monitor/misc.c @@ -136,7 +136,7 @@ char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index, handle_hmp_command(&hmp, command_line); WITH_QEMU_LOCK_GUARD(&hmp.common.mon_lock) { - output = g_strdup(qstring_get_str(hmp.common.outbuf)); + output = g_strdup(hmp.common.outbuf->str); } out: |