mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:57:45 +00:00
Style: Remove uses of NULL, substituting nullptr
This commit is contained in:
parent
93f4388e45
commit
5d5c32cec1
7 changed files with 8 additions and 8 deletions
|
@ -175,7 +175,7 @@ int main(int argc, char** argv)
|
|||
highest_fd = max(highest_fd, fd);
|
||||
}
|
||||
|
||||
int ready = select(highest_fd + 1, &readfds, &writefds, &exceptfds, NULL);
|
||||
int ready = select(highest_fd + 1, &readfds, &writefds, &exceptfds, nullptr);
|
||||
if (ready == -1) {
|
||||
if (errno == EINTR)
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue