diff mbox

net: remove extra spaces in help messages

Message ID 1327257758-12765-1-git-send-email-mlspirat42@gmail.com
State New
Headers show

Commit Message

Benjamin Jan. 22, 2012, 6:42 p.m. UTC
Signed-off-by: Benjamin MARSILI <mlspirat42@gmail.com>
---
 net/socket.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

Comments

Stefan Hajnoczi Feb. 9, 2012, 9:36 a.m. UTC | #1
On Mon, Jan 23, 2012 at 03:42:38AM +0900, Benjamin MARSILI wrote:
> 
> Signed-off-by: Benjamin MARSILI <mlspirat42@gmail.com>
> ---
>  net/socket.c |    8 ++++----
>  1 files changed, 4 insertions(+), 4 deletions(-)

Thanks, applied to the trivial patches tree:
https://github.com/stefanha/qemu/commits/trivial-patches

Stefan
diff mbox

Patch

diff --git a/net/socket.c b/net/socket.c
index d4c2002..0bcf229 100644
--- a/net/socket.c
+++ b/net/socket.c
@@ -664,8 +664,8 @@  int net_init_socket(QemuOpts *opts,
             qemu_opt_get(opts, "connect") ||
             qemu_opt_get(opts, "listen") ||
             qemu_opt_get(opts, "mcast")) {
-            error_report("fd=, connect=, listen=\
-                         and mcast= is invalid with udp=");
+            error_report("fd=, connect=, listen="
+                         " and mcast= is invalid with udp=");
             return -1;
         }
 
@@ -680,8 +680,8 @@  int net_init_socket(QemuOpts *opts,
             return -1;
         }
     } else {
-        error_report("-socket requires fd=, listen=, \
-                     connect=, mcast= or udp=");
+        error_report("-socket requires fd=, listen=,"
+                     " connect=, mcast= or udp=");
         return -1;
     }
     return 0;