From patchwork Wed Oct 28 18:36:54 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 537528 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 D31251402B2 for ; Thu, 29 Oct 2015 05:40:16 +1100 (AEDT) Received: from localhost ([::1]:40120 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZrVdu-0007E1-OV for incoming@patchwork.ozlabs.org; Wed, 28 Oct 2015 14:40:14 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42473) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZrVbX-0002zO-Lt for qemu-devel@nongnu.org; Wed, 28 Oct 2015 14:37:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZrVbU-0004bm-GF for qemu-devel@nongnu.org; Wed, 28 Oct 2015 14:37:47 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47136) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZrVbU-0004bi-BE for qemu-devel@nongnu.org; Wed, 28 Oct 2015 14:37:44 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id 1467AC19F025 for ; Wed, 28 Oct 2015 18:37:44 +0000 (UTC) Received: from localhost (ovpn-113-73.phx2.redhat.com [10.3.113.73]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t9SIbgsU017515; Wed, 28 Oct 2015 14:37:43 -0400 From: Eduardo Habkost To: qemu-devel@nongnu.org Date: Wed, 28 Oct 2015 16:36:54 -0200 Message-Id: <1446057425-16891-6-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> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.27 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Paolo Bonzini , Andrew Jones , Markus Armbruster Subject: [Qemu-devel] [PATCH v2 05/16] vl.c: Use "cannot" instead of "can not" in error messages 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 Suggested-by: Eric Blake Signed-off-by: Eduardo Habkost --- vl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vl.c b/vl.c index 24343f7..b68b891 100644 --- a/vl.c +++ b/vl.c @@ -4165,12 +4165,12 @@ int main(int argc, char **argv, char **envp) if (display_type == DT_NOGRAPHIC && (default_parallel || default_serial || default_monitor || default_virtcon)) { - error_report("-nographic can not be used with -daemonize"); + error_report("-nographic cannot be used with -daemonize"); exit(1); } #ifdef CONFIG_CURSES if (display_type == DT_CURSES) { - error_report("curses display can not be used with -daemonize"); + error_report("curses display cannot be used with -daemonize"); exit(1); } #endif