From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42973) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZrVc4-0003vW-BE for qemu-devel@nongnu.org; Wed, 28 Oct 2015 14:38:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZrVc3-0004zu-Iw for qemu-devel@nongnu.org; Wed, 28 Oct 2015 14:38:20 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47281) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZrVc3-0004zh-AC for qemu-devel@nongnu.org; Wed, 28 Oct 2015 14:38:19 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id 0C0F4C1C7543 for ; Wed, 28 Oct 2015 18:38:19 +0000 (UTC) From: Eduardo Habkost Date: Wed, 28 Oct 2015 16:37:04 -0200 Message-Id: <1446057425-16891-16-git-send-email-ehabkost@redhat.com> In-Reply-To: <1446057425-16891-1-git-send-email-ehabkost@redhat.com> References: <1446057425-16891-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PATCH v2 15/16] vl.c: Use US spelling for "unrecognized" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini , Andrew Jones , Markus Armbruster All other error_report() and error_setg() cases use "unrecognized", use the same spelling here for consistency. Reported-by: Eric Blake Signed-off-by: Eduardo Habkost --- vl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vl.c b/vl.c index 686a7d3..6b831eb 100644 --- a/vl.c +++ b/vl.c @@ -950,7 +950,7 @@ static struct bt_device_s *bt_device_add(const char *opt) if (endp) { vlan_id = strtol(endp + 6, &endp, 0); if (*endp) { - error_report("unrecognised bluetooth vlan Id"); + error_report("unrecognized bluetooth vlan Id"); return 0; } } -- 2.1.0