[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 33/39] io/channel-watch: Drop the unnecessary cast
From: |
Bin Meng |
Subject: |
[PATCH v2 33/39] io/channel-watch: Drop the unnecessary cast |
Date: |
Tue, 20 Sep 2022 18:31:53 +0800 |
From: Bin Meng <bin.meng@windriver.com>
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>
---
Changes in v2:
- new patch: "io/channel-watch: Drop the unnecessary cast"
io/channel-watch.c | 6 +++---
1 file 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) {
--
2.34.1
- Re: [PATCH v2 26/39] tests/qtest: migration-test: Make sure QEMU process "to" exited after migration is canceled, (continued)
- [PATCH v2 31/39] tests/qtest: libqtest: Correct the timeout unit of blocking receive calls for win32, Bin Meng, 2022/09/20
- [PATCH v2 33/39] io/channel-watch: Drop the unnecessary cast,
Bin Meng <=
- [PATCH v2 36/39] .gitlab-ci.d/windows.yml: Increase the timeout to 90 minutes, Bin Meng, 2022/09/20
- [PATCH v2 24/39] tests/qtest: virtio-net-failover: Disable migration tests for win32, Bin Meng, 2022/09/20
- [PATCH v2 30/39] tests/qtest: libqtest: Replace the call to close a socket with closesocket(), Bin Meng, 2022/09/20
- [PATCH v2 32/39] io/channel-watch: Drop a superfluous '#ifdef WIN32', Bin Meng, 2022/09/20
- [PATCH v2 34/39] io/channel-watch: Fix socket watch on Windows, Bin Meng, 2022/09/20