From: Stefan Weil Date: Sat, 8 Aug 2009 21:33:26 +0000 (+0200) Subject: Add missing linefeed in error message X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=7dc3fa0913dcf92d28c96770643ac617a3f4d680;p=qmiga%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 1b531e7d0b..beba552af3 100644 --- a/net.c +++ b/net.c @@ -2917,7 +2917,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; }