net: remove extra spaces in help messages
authorBenjamin MARSILI <mlspirat42@gmail.com>
Sun, 22 Jan 2012 18:42:38 +0000 (03:42 +0900)
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Fri, 10 Feb 2012 10:44:52 +0000 (10:44 +0000)
Signed-off-by: Benjamin MARSILI <mlspirat42@gmail.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
net/socket.c

index d4c200292350dbc3f74fce907cb4bae74d4a59b7..0bcf229c24dba9402d92a7323c0a7ffa2e3fd2c0 100644 (file)
@@ -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;