Skip to content

Commit 3cbc897

Browse files
committed
Merge remote-tracking branch 'remotes/armbru/tags/pull-monitor-2020-07-21' into staging
Monitor patches for 2020-07-21 # gpg: Signature made Tue 21 Jul 2020 16:23:27 BST # gpg: using RSA key 354BC8B3D7EB2A6B68674E5F3870B400EB918653 # gpg: issuer "[email protected]" # gpg: Good signature from "Markus Armbruster <[email protected]>" [full] # gpg: aka "Markus Armbruster <[email protected]>" [full] # Primary key fingerprint: 354B C8B3 D7EB 2A6B 6867 4E5F 3870 B400 EB91 8653 * remotes/armbru/tags/pull-monitor-2020-07-21: qdev: Fix device_add DRIVER,help to print to monitor Signed-off-by: Peter Maydell <[email protected]>
2 parents c8004fe + 029afc4 commit 3cbc897

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qdev-monitor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ int qdev_device_help(QemuOpts *opts)
300300
}
301301
g_ptr_array_sort(array, (GCompareFunc)qemu_pstrcmp0);
302302
for (i = 0; i < array->len; i++) {
303-
printf("%s\n", (char *)array->pdata[i]);
303+
qemu_printf("%s\n", (char *)array->pdata[i]);
304304
}
305305
g_ptr_array_set_free_func(array, g_free);
306306
g_ptr_array_free(array, true);

0 commit comments

Comments
 (0)