From patchwork Fri Dec 7 11:39:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 204462 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D19592C00C1 for ; Fri, 7 Dec 2012 22:53:20 +1100 (EST) Received: from localhost ([::1]:54088 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgwUZ-0002hJ-22 for incoming@patchwork.ozlabs.org; Fri, 07 Dec 2012 06:53:19 -0500 Received: from eggs.gnu.org ([208.118.235.92]:39666) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgwUL-0002fI-SS for qemu-devel@nongnu.org; Fri, 07 Dec 2012 06:53:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TgwUG-0005UY-4P for qemu-devel@nongnu.org; Fri, 07 Dec 2012 06:53:05 -0500 Received: from mx1.redhat.com ([209.132.183.28]:5985) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgwHI-0002LT-Aq for qemu-devel@nongnu.org; Fri, 07 Dec 2012 06:39:36 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qB7BdZTZ024918 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 7 Dec 2012 06:39:35 -0500 Received: from localhost (wlan-68-98.muc.redhat.com [10.32.68.98]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id qB7BdYWJ026410; Fri, 7 Dec 2012 06:39:35 -0500 From: Stefan Hajnoczi To: Date: Fri, 7 Dec 2012 12:39:11 +0100 Message-Id: <1354880352-9597-13-git-send-email-stefanha@redhat.com> In-Reply-To: <1354880352-9597-1-git-send-email-stefanha@redhat.com> References: <1354880352-9597-1-git-send-email-stefanha@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Michal Privoznik , Anthony Liguori , Stefan Hajnoczi Subject: [Qemu-devel] [PATCH 12/13] qemu-options: Fix space at EOL 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 From: Michal Privoznik There's no need to add a space at the end of line. Moreover, it can make problems in some projects that store the help output into a file (and run couple of tests based on that) and have space at EOL forbidden. Signed-off-by: Michal Privoznik Reviewed-by: Peter Maydell Signed-off-by: Stefan Hajnoczi --- qemu-options.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu-options.hx b/qemu-options.hx index de43b1b..231cc4f 100644 --- a/qemu-options.hx +++ b/qemu-options.hx @@ -1331,7 +1331,7 @@ DEF("net", HAS_ARG, QEMU_OPTION_net, " connect the host TAP network interface to VLAN 'n'\n" #else "-net tap[,vlan=n][,name=str][,fd=h][,ifname=name][,script=file][,downscript=dfile][,helper=helper][,sndbuf=nbytes][,vnet_hdr=on|off][,vhost=on|off][,vhostfd=h][,vhostforce=on|off]\n" - " connect the host TAP network interface to VLAN 'n' \n" + " connect the host TAP network interface to VLAN 'n'\n" " use network scripts 'file' (default=" DEFAULT_NETWORK_SCRIPT ")\n" " to configure it and 'dfile' (default=" DEFAULT_NETWORK_DOWN_SCRIPT ")\n" " to deconfigure it\n"