Replaced NULL with nullptr

This commit is contained in:
M. Huri
2021-10-12 14:30:55 +07:00
parent f9aec342dc
commit 033dc4dbef
7 changed files with 8 additions and 8 deletions

View File

@ -110,7 +110,7 @@ void IPUnix::_resolve_hostname(List<IPAddress> &r_addresses, const String &p_hos
struct addrinfo *next = result;
do {
if (next->ai_addr == NULL) {
if (next->ai_addr == nullptr) {
next = next->ai_next;
continue;
}