From: Stefan Weil Date: Sat, 8 Aug 2009 21:33:26 +0000 (+0200) Subject: Add missing linefeed in error message X-Git-Tag: v0.11.0-rc2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=95c6409e121bf4b7bead1be3be587e9915bed185;p=thirdparty%2Fqemu.git Add missing linefeed in error message 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 Signed-off-by: Anthony Liguori --- diff --git a/net.c b/net.c index 0b531a69b49..413292b347f 100644 --- a/net.c +++ b/net.c @@ -2946,7 +2946,7 @@ void 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; }