summaryrefslogtreecommitdiff
path: root/net.c
diff options
context:
space:
mode:
authorMichael S. Tsirkin <mst@redhat.com>2009-09-30 18:56:44 +0000
committerBlue Swirl <blauwirbel@gmail.com>2009-09-30 18:56:44 +0000
commitacedcfbf7a9a29c772f613bafac9f3430faa6347 (patch)
tree5c206502b999ed7cf40f4069de7e9c06327bae5e /net.c
parente8bbe36c03c6044953aa5b3fa8bcd7cb7b7b88e3 (diff)
downloadqemu-acedcfbf7a9a29c772f613bafac9f3430faa6347.tar.gz
net: fix coding style nit
Put space between = and - assigning a negative number to avoid confusion with old-style "-=" (which we also have, and need to be fixed). Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'net.c')
-rw-r--r--net.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net.c b/net.c
index 3fdf1e6a1b..2686f78b88 100644
--- a/net.c
+++ b/net.c
@@ -2044,7 +2044,7 @@ static NetSocketState *net_socket_fd_init(VLANState *vlan,
const char *model, const char *name,
int fd, int is_connected)
{
- int so_type=-1, optlen=sizeof(so_type);
+ int so_type = -1, optlen=sizeof(so_type);
if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type,
(socklen_t *)&optlen)< 0) {