From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45220) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXude-0000z5-Lq for qemu-devel@nongnu.org; Fri, 04 Sep 2015 13:18:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZXudb-0003gi-Eh for qemu-devel@nongnu.org; Fri, 04 Sep 2015 13:18:58 -0400 From: Kevin Wolf Date: Fri, 4 Sep 2015 19:18:28 +0200 Message-Id: <1441387117-27072-5-git-send-email-kwolf@redhat.com> In-Reply-To: <1441387117-27072-1-git-send-email-kwolf@redhat.com> References: <1441387117-27072-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH v2 04/13] qcow2: Improve error message List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-block@nongnu.org Cc: kwolf@redhat.com, qemu-devel@nongnu.org, mreitz@redhat.com Eric says that "any" sounds better than "either", and my non-native feeling says the same, so let's change it. Suggested-by: Eric Blake Signed-off-by: Kevin Wolf --- block/qcow2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block/qcow2.c b/block/qcow2.c index 76c331b..e120ed3 100644 --- a/block/qcow2.c +++ b/block/qcow2.c @@ -971,7 +971,7 @@ static int qcow2_open(BlockDriverState *bs, QDict *options, int flags, overlap_check_template = QCOW2_OL_ALL; } else { error_setg(errp, "Unsupported value '%s' for qcow2 option " - "'overlap-check'. Allowed are either of the following: " + "'overlap-check'. Allowed are any of the following: " "none, constant, cached, all", opt_overlap_check); ret = -EINVAL; goto fail; -- 1.8.3.1