diff options
author | Chunyan Liu <cyliu@suse.com> | 2014-06-05 17:20:41 +0800 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2014-06-16 17:23:19 +0800 |
commit | e67905426bf3cf811d31c87789c1c7e986849d66 (patch) | |
tree | 556b38c40ad3663e06f0652e81f53fdca4fe9d7c /util | |
parent | 5e89db7641fdf61f066119e4d8864ad7be1e32f0 (diff) | |
download | qemu-e67905426bf3cf811d31c87789c1c7e986849d66.tar.gz qemu-e67905426bf3cf811d31c87789c1c7e986849d66.tar.bz2 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 'util')
-rw-r--r-- | util/qemu-option.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/util/qemu-option.c b/util/qemu-option.c index c188c5ce6c..2c467918be 100644 --- a/util/qemu-option.c +++ b/util/qemu-option.c @@ -895,17 +895,15 @@ void qemu_opts_del(QemuOpts *opts) g_free(opts); } -int qemu_opts_print(QemuOpts *opts, void *dummy) +void qemu_opts_print(QemuOpts *opts) { QemuOpt *opt; - fprintf(stderr, "%s: %s:", opts->list->name, - opts->id ? opts->id : "<noid>"); + printf("%s: %s:", opts->list->name, + opts->id ? opts->id : "<noid>"); QTAILQ_FOREACH(opt, &opts->head, next) { - fprintf(stderr, " %s=\"%s\"", opt->name, opt->str); + printf(" %s=\"%s\"", opt->name, opt->str); } - fprintf(stderr, "\n"); - return 0; } static int opts_do_parse(QemuOpts *opts, const char *params, |