mirror of
https://github.com/AxioDL/boo.git
synced 2025-12-15 08:06:16 +00:00
General: Make use of nullptr where applicable
This commit is contained in:
@@ -459,7 +459,7 @@ public:
|
||||
FD_ZERO(&fds);
|
||||
FD_SET(m_x11Fd, &fds);
|
||||
FD_SET(m_dbusFd, &fds);
|
||||
if (pselect(m_maxFd + 1, &fds, NULL, NULL, NULL, &origmask) < 0) {
|
||||
if (pselect(m_maxFd + 1, &fds, nullptr, nullptr, nullptr, &origmask) < 0) {
|
||||
/* SIGINT/SIGUSR2 handled here */
|
||||
if (errno == EINTR)
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user