diff options
author | Chunyan Liu | 2014-06-05 11:20:41 +0200 |
---|---|---|
committer | Stefan Hajnoczi | 2014-06-16 11:23:19 +0200 |
commit | e67905426bf3cf811d31c87789c1c7e986849d66 (patch) | |
tree | 556b38c40ad3663e06f0652e81f53fdca4fe9d7c /include | |
parent | QemuOpts: move find_desc_by_name ahead for later calling (diff) | |
download | qemu-e67905426bf3cf811d31c87789c1c7e986849d66.tar.gz qemu-e67905426bf3cf811d31c87789c1c7e986849d66.tar.xz qemu-e67905426bf3cf811d31c87789c1c7e986849d66.zip |
QemuOpts: repurpose qemu_opts_print to replace print_option_parameters
Currently this function is not used anywhere. In later patches, it will
replace print_option_parameters. To avoid print info changes, change
qemu_opts_print from fprintf stderr to printf, and remove last printf.
Signed-off-by: Chunyan Liu <cyliu@suse.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu/option.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qemu/option.h b/include/qemu/option.h index 8c0ac3485e..1077b69851 100644 --- a/include/qemu/option.h +++ b/include/qemu/option.h @@ -156,7 +156,7 @@ QDict *qemu_opts_to_qdict(QemuOpts *opts, QDict *qdict); void qemu_opts_absorb_qdict(QemuOpts *opts, QDict *qdict, Error **errp); typedef int (*qemu_opts_loopfunc)(QemuOpts *opts, void *opaque); -int qemu_opts_print(QemuOpts *opts, void *dummy); +void qemu_opts_print(QemuOpts *opts); int qemu_opts_foreach(QemuOptsList *list, qemu_opts_loopfunc func, void *opaque, int abort_on_failure); |