| Submitter | Mark McLoughlin |
|---|---|
| Date | Sept. 23, 2009, 10:24 a.m. |
| Message ID | <1253701463-3134-9-git-send-email-markmc@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/34135/ |
| State | Superseded |
| Headers | show |
Comments
Patch
diff --git a/qemu-config.c b/qemu-config.c index 555c7ba..31e7d61 100644 --- a/qemu-config.c +++ b/qemu-config.c @@ -187,8 +187,6 @@ int qemu_set_option(const char *str) } if (qemu_opt_set(opts, arg, str+offset+1) == -1) { - fprintf(stderr, "failed to set \"%s\" for %s \"%s\"\n", - arg, lists[i]->name, id); return -1; } return 0;
qemu_opt_set() prints an error message in all failure cases, so qemu_set_option() doesn't need to print another error. Signed-off-by: Mark McLoughlin <markmc@redhat.com> --- qemu-config.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-)