Port fixup of "gdbstub: Get rid of a few signed/unsigned comparisons" from citra

According to @wwylele comment, there's no need to cast to u32
This commit is contained in:
Zhu PengFei
2018-08-06 10:52:17 +08:00
committed by GitHub
parent c8e5c74092
commit 63e39d07e7

View File

@@ -743,7 +743,7 @@ static bool IsDataAvailable() {
fd_set fd_socket;
FD_ZERO(&fd_socket);
FD_SET(static_cast<u32>(gdbserver_socket), &fd_socket);
FD_SET(gdbserver_socket, &fd_socket);
struct timeval t;
t.tv_sec = 0;