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:
@@ -743,7 +743,7 @@ static bool IsDataAvailable() {
|
|||||||
fd_set fd_socket;
|
fd_set fd_socket;
|
||||||
|
|
||||||
FD_ZERO(&fd_socket);
|
FD_ZERO(&fd_socket);
|
||||||
FD_SET(static_cast<u32>(gdbserver_socket), &fd_socket);
|
FD_SET(gdbserver_socket, &fd_socket);
|
||||||
|
|
||||||
struct timeval t;
|
struct timeval t;
|
||||||
t.tv_sec = 0;
|
t.tv_sec = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user