aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Weil <stefan@weilnetz.de>2009-08-08 23:33:26 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-08-27 21:23:39 -0500
commit95c6409e121bf4b7bead1be3be587e9915bed185 (patch)
tree2cab6e7e969cbc3ff59739d1a87c3a9fffaad314
parent731dd3beb3bf9a15176b150bd2e9a1dd8b519d7e (diff)
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>
-rw-r--r--net.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net.c b/net.c
index 0b531a69b..413292b34 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;
}