diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2012-03-21 16:17:21 -0300 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2012-06-04 13:49:34 -0300 |
commit | 384f2139ff681cd3c26de365417cff46c186b5f0 (patch) | |
tree | ac96be1c8207bdba05bda073dcbc71b0ae93c89d /qemu-option.c | |
parent | 584d4064c6de5c9f2f555d7afebbbde59c741b8f (diff) |
qemu-option: introduce qemu_opt_set_err()
This is like qemu_opt_set(), except that it takes an Error argument.
This new function allows for a incremental conversion of code using
qemu_opt_set().
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Reviewed-By: Laszlo Ersek <lersek@redhat.com>
Diffstat (limited to 'qemu-option.c')
-rw-r--r-- | qemu-option.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/qemu-option.c b/qemu-option.c index 7af2b50a43..1cddb9d545 100644 --- a/qemu-option.c +++ b/qemu-option.c @@ -669,6 +669,12 @@ int qemu_opt_set(QemuOpts *opts, const char *name, const char *value) return 0; } +void qemu_opt_set_err(QemuOpts *opts, const char *name, const char *value, + Error **errp) +{ + opt_set(opts, name, value, false, errp); +} + int qemu_opt_set_bool(QemuOpts *opts, const char *name, bool val) { QemuOpt *opt; |