diff options
| author | Markus Armbruster <armbru@redhat.com> | 2019-04-17 21:17:53 +0200 |
|---|---|---|
| committer | Markus Armbruster <armbru@redhat.com> | 2019-04-18 22:18:59 +0200 |
| commit | 76c8661595fa9414fabf8a164b9adfc93c8a65e2 (patch) | |
| tree | 8e29fbe42f3a67f7587749f8d57e31804c16c381 /monitor.c | |
| parent | 3de2faa9a87e0a9fd84a00a2481cdbb0304e866d (diff) | |
| download | focaccia-qemu-76c8661595fa9414fabf8a164b9adfc93c8a65e2.tar.gz focaccia-qemu-76c8661595fa9414fabf8a164b9adfc93c8a65e2.zip | |
tcg: Simplify how dump_drift_info() prints
dump_drift_info() takes an fprintf()-like callback and a FILE * to pass to it. Its only caller hmp_info_jit() passes monitor_fprintf() and a Monitor * cast to FILE *. monitor_fprintf() casts it right back, and is otherwise identical to monitor_printf(). The type-punning is ugly. Drop the callback, and call qemu_printf() instead. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Message-Id: <20190417191805.28198-6-armbru@redhat.com>
Diffstat (limited to 'monitor.c')
| -rw-r--r-- | monitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/monitor.c b/monitor.c index 24e4d49d11..7573689585 100644 --- a/monitor.c +++ b/monitor.c @@ -1319,7 +1319,7 @@ static void hmp_info_jit(Monitor *mon, const QDict *qdict) } dump_exec_info(); - dump_drift_info((FILE *)mon, monitor_fprintf); + dump_drift_info(); } static void hmp_info_opcount(Monitor *mon, const QDict *qdict) |