From: Benjamin MARSILI Date: Sun, 22 Jan 2012 18:42:38 +0000 (+0900) Subject: net: remove extra spaces in help messages X-Git-Tag: v1.1-rc0~396^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da8d605733c9b368230a716cc71c7915902387db;p=thirdparty%2Fqemu.git net: remove extra spaces in help messages Signed-off-by: Benjamin MARSILI Signed-off-by: Stefan Hajnoczi --- diff --git a/net/socket.c b/net/socket.c index d4c20029235..0bcf229c24d 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;