qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [COMMIT 7dc3fa0] Add missing linefeed in error message


From: Anthony Liguori
Subject: [Qemu-commits] [COMMIT 7dc3fa0] Add missing linefeed in error message
Date: Thu, 27 Aug 2009 22:03:59 -0000

From: Stefan Weil <address@hidden>

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 <address@hidden>
Signed-off-by: Anthony Liguori <address@hidden>

diff --git a/net.c b/net.c
index 1b531e7..beba552 100644
--- a/net.c
+++ b/net.c
@@ -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;
     }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]