[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 7/9] net: remove extra spaces in help messages
From: |
Stefan Hajnoczi |
Subject: |
[Qemu-devel] [PATCH 7/9] net: remove extra spaces in help messages |
Date: |
Fri, 10 Feb 2012 11:34:11 +0000 |
From: Benjamin MARSILI <address@hidden>
Signed-off-by: Benjamin MARSILI <address@hidden>
Signed-off-by: Stefan Hajnoczi <address@hidden>
---
net/socket.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
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;
--
1.7.8.3
- [Qemu-devel] [PULL 0/9] Trivial patches for 28 January to 10 February 2012, Stefan Hajnoczi, 2012/02/10
- [Qemu-devel] [PATCH 1/9] linux-user: fail execve() if env/args too big, Stefan Hajnoczi, 2012/02/10
- [Qemu-devel] [PATCH 7/9] net: remove extra spaces in help messages,
Stefan Hajnoczi <=
- [Qemu-devel] [PATCH 8/9] virtio: Remove unneeded g_free() check in virtio_cleanup(), Stefan Hajnoczi, 2012/02/10
- [Qemu-devel] [PATCH 5/9] vl.c: Fix typo in variable name, Stefan Hajnoczi, 2012/02/10
- [Qemu-devel] [PATCH 3/9] cpu-exec.c: Correct comment about this file and indentation cleanup, Stefan Hajnoczi, 2012/02/10
- [Qemu-devel] [PATCH 6/9] fmopl: Fix typo in function name, Stefan Hajnoczi, 2012/02/10
- [Qemu-devel] [PATCH 9/9] linux-user: brk() debugging, Stefan Hajnoczi, 2012/02/10
- [Qemu-devel] [PATCH 4/9] ide: fix compilation errors when DEBUG_IDE is set, Stefan Hajnoczi, 2012/02/10
- [Qemu-devel] [PATCH 2/9] CODING_STYLE: Clarify style for enum and function type names, Stefan Hajnoczi, 2012/02/10
- Re: [Qemu-devel] [PULL 0/9] Trivial patches for 28 January to 10 February 2012, Anthony Liguori, 2012/02/17