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 <weil@mail.berlios.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
Stefan Weil 2009-08-08 23:33:26 +02:00 committed by Anthony Liguori
parent 861767594b
commit 7dc3fa0913
1 changed files with 1 additions and 1 deletions

2
net.c
View File

@ -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;
}