Commit 7dc3fa09 authored by Stefan Weil's avatar Stefan Weil Committed by Anthony Liguori
Browse files

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: default avatarStefan Weil <weil@mail.berlios.de>
Signed-off-by: default avatarAnthony Liguori <aliguori@us.ibm.com>
parent 86176759
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }