diff options
author | Stefan Weil <stefan@weilnetz.de> | 2009-08-08 23:33:26 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-08-27 21:23:39 -0500 |
commit | 95c6409e121bf4b7bead1be3be587e9915bed185 (patch) | |
tree | 2cab6e7e969cbc3ff59739d1a87c3a9fffaad314 | |
parent | 731dd3beb3bf9a15176b150bd2e9a1dd8b519d7e (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |