From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MZtXl-0004Ik-M7 for qemu-devel@nongnu.org; Sat, 08 Aug 2009 17:33:37 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MZtXg-0004IV-7I for qemu-devel@nongnu.org; Sat, 08 Aug 2009 17:33:36 -0400 Received: from [199.232.76.173] (port=49402 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MZtXg-0004IS-2W for qemu-devel@nongnu.org; Sat, 08 Aug 2009 17:33:32 -0400 Received: from moutng.kundenserver.de ([212.227.17.8]:59111) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MZtXf-000486-Er for qemu-devel@nongnu.org; Sat, 08 Aug 2009 17:33:31 -0400 From: Stefan Weil Date: Sat, 8 Aug 2009 23:33:26 +0200 Message-Id: <1249767206-9802-1-git-send-email-weil@mail.berlios.de> Subject: [Qemu-devel] [PATCH] Add missing linefeed in error message List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers Cc: Stefan Weil From: Stefan Weil The error message for an unknown network device given to monitor command set_link looks better with a terminating linefeed. Signed-off-by: Stefan Weil --- net.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net.c b/net.c index b5e8c9f..85f3727 100644 --- a/net.c +++ b/net.c @@ -2917,7 +2917,7 @@ int do_set_link(Monitor *mon, const char *name, const char *up_or_down) done: if (!vc) { - monitor_printf(mon, "could not find network device '%s'", name); + monitor_printf(mon, "could not find network device '%s'\n", name); return 0; } -- 1.5.6.5