sim-card
/
qemu
Archived
10
0
Fork 0

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>
This commit is contained in:
Benjamin MARSILI 2012-01-23 03:42:38 +09:00 committed by Stefan Hajnoczi
parent 31de83140d
commit da8d605733
1 changed files with 4 additions and 4 deletions

View 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;