summary refs log tree commit diff stats
path: root/net/socket.c
diff options
context:
space:
mode:
authorBenjamin MARSILI <mlspirat42@gmail.com>2012-01-23 03:42:38 +0900
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2012-02-10 10:44:52 +0000
commitda8d605733c9b368230a716cc71c7915902387db (patch)
tree7cc4a40e09bfc82161b02b8cc62bb2671beb2450 /net/socket.c
parent31de83140d23ccc0e290bc0de609ba2b1aff674a (diff)
downloadfocaccia-qemu-da8d605733c9b368230a716cc71c7915902387db.tar.gz
focaccia-qemu-da8d605733c9b368230a716cc71c7915902387db.zip
net: remove extra spaces in help messages
Signed-off-by: Benjamin MARSILI <mlspirat42@gmail.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'net/socket.c')
-rw-r--r--net/socket.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/socket.c b/net/socket.c
index d4c2002923..0bcf229c24 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;