diff options
author | Stefan Weil <stefan@weilnetz.de> | 2009-08-08 23:33:26 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-08-24 08:01:40 -0500 |
commit | 7dc3fa0913dcf92d28c96770643ac617a3f4d680 (patch) | |
tree | f40374a17029130fedcdcad4d6d4c82c4408ef10 /net.c | |
parent | 861767594bc3606b90fbd36b69c84eaa90394e0f (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>
Diffstat (limited to 'net.c')
-rw-r--r-- | net.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |