diff options
author | Bin Meng | 2022-10-06 17:19:24 +0200 |
---|---|---|
committer | Daniel P. Berrangé | 2022-10-26 14:32:08 +0200 |
commit | 6c822a031b9e87fea8303373d6501f6d6a3c1e31 (patch) | |
tree | b0d9ce97cb8c84510d9c7cea72cec656cc1c46bc /io | |
parent | io/channel-watch: Drop a superfluous '#ifdef WIN32' (diff) | |
download | qemu-6c822a031b9e87fea8303373d6501f6d6a3c1e31.tar.gz qemu-6c822a031b9e87fea8303373d6501f6d6a3c1e31.tar.xz qemu-6c822a031b9e87fea8303373d6501f6d6a3c1e31.zip |
io/channel-watch: Drop the unnecessary cast
There is no need to do a type cast on ssource->socket as it is
already declared as a SOCKET.
Suggested-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Bin Meng <bin.meng@windriver.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'io')
-rw-r--r-- | io/channel-watch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/io/channel-watch.c b/io/channel-watch.c index 89f3c8a88a..43d38494f7 100644 --- a/io/channel-watch.c +++ b/io/channel-watch.c @@ -130,13 +130,13 @@ qio_channel_socket_source_check(GSource *source) FD_ZERO(&wfds); FD_ZERO(&xfds); if (ssource->condition & G_IO_IN) { - FD_SET((SOCKET)ssource->socket, &rfds); + FD_SET(ssource->socket, &rfds); } if (ssource->condition & G_IO_OUT) { - FD_SET((SOCKET)ssource->socket, &wfds); + FD_SET(ssource->socket, &wfds); } if (ssource->condition & G_IO_PRI) { - FD_SET((SOCKET)ssource->socket, &xfds); + FD_SET(ssource->socket, &xfds); } ssource->revents = 0; if (select(0, &rfds, &wfds, &xfds, &tv0) == 0) { |