From a676968b7f71d8d94d4e083fadb9661f37846d0a Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Tue, 6 Oct 2009 12:16:59 +0100 Subject: Remove bogus error message from qemu_opts_set() The only way qemu_opts_create() can fail is if a QemuOpts with that id already exists and fail_if_exists=1. In that case, we already print an error which makes more sense than the one in qemu_opts_set(). Signed-off-by: Mark McLoughlin Signed-off-by: Anthony Liguori --- qemu-option.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'qemu-option.c') diff --git a/qemu-option.c b/qemu-option.c index 089228656..293f94cf0 100644 --- a/qemu-option.c +++ b/qemu-option.c @@ -670,8 +670,6 @@ int qemu_opts_set(QemuOptsList *list, const char *id, opts = qemu_opts_create(list, id, 1); if (opts == NULL) { - fprintf(stderr, "id \"%s\" not found for \"%s\"\n", - id, list->name); return -1; } return qemu_opt_set(opts, name, value); -- cgit v1.2.3