From patchwork Mon Sep 7 13:26:12 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Wolf X-Patchwork-Id: 515148 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 221B01401CD for ; Mon, 7 Sep 2015 23:31:39 +1000 (AEST) Received: from localhost ([::1]:56682 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZYwWH-00019O-18 for incoming@patchwork.ozlabs.org; Mon, 07 Sep 2015 09:31:37 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55469) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZYwRZ-0004J2-QV for qemu-devel@nongnu.org; Mon, 07 Sep 2015 09:26:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZYwRY-0005AT-Vb for qemu-devel@nongnu.org; Mon, 07 Sep 2015 09:26:45 -0400 Received: from mx1.redhat.com ([209.132.183.28]:50749) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZYwRS-00050x-Nt; Mon, 07 Sep 2015 09:26:39 -0400 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id 74B928E3D3; Mon, 7 Sep 2015 13:26:38 +0000 (UTC) Received: from noname.redhat.com (ovpn-116-66.ams2.redhat.com [10.36.116.66]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t87DQN4x001488; Mon, 7 Sep 2015 09:26:36 -0400 From: Kevin Wolf To: qemu-block@nongnu.org Date: Mon, 7 Sep 2015 15:26:12 +0200 Message-Id: <1441632381-26638-5-git-send-email-kwolf@redhat.com> In-Reply-To: <1441632381-26638-1-git-send-email-kwolf@redhat.com> References: <1441632381-26638-1-git-send-email-kwolf@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.26 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: kwolf@redhat.com, qemu-devel@nongnu.org, mreitz@redhat.com Subject: [Qemu-devel] [PATCH v3 04/13] qcow2: Improve error message X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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 Reviewed-by: Max Reitz --- block/qcow2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block/qcow2.c b/block/qcow2.c index a707d8d..b681977 100644 --- a/block/qcow2.c +++ b/block/qcow2.c @@ -1030,7 +1030,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;