Compare commits

...

1 Commits

Author SHA1 Message Date
Zhu PengFei
63e39d07e7 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
2018-08-06 10:52:17 +08:00

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;