From: Kevin Wolf Date: Wed, 13 May 2015 08:39:13 +0000 (+0200) Subject: qemu-io: Remove duplicate 'open' error message X-Git-Tag: v2.5.0-rc0~128^2~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff7cfd7d926eca40abeb9a1440829dc83facf54a;p=thirdparty%2Fqemu.git qemu-io: Remove duplicate 'open' error message qemu_opts_parse_noisily() already prints an error message with the exact reason why the parsing failed. No need to add another less specific one. Signed-off-by: Kevin Wolf Reviewed-by: Max Reitz --- diff --git a/qemu-io.c b/qemu-io.c index f1e3a671354..269f17cc2cc 100644 --- a/qemu-io.c +++ b/qemu-io.c @@ -156,7 +156,6 @@ static int open_f(BlockBackend *blk, int argc, char **argv) break; case 'o': if (!qemu_opts_parse_noisily(&empty_opts, optarg, false)) { - printf("could not parse option list -- %s\n", optarg); qemu_opts_reset(&empty_opts); return 0; }