diff options
author | M. Huri <kak_huri@yahoo.com> | 2021-10-12 14:30:55 +0700 |
---|---|---|
committer | M. Huri <kak_huri@yahoo.com> | 2021-10-12 20:20:19 +0700 |
commit | 033dc4dbefed22aab7b58a60e27ce3c86943fe25 (patch) | |
tree | 50ce05c3bce0431937f6c070b7f0042682065ace /drivers/unix | |
parent | f9aec342dcd51d65c5970dd395e3c7a66cac446c (diff) |
Replaced NULL with nullptr
Diffstat (limited to 'drivers/unix')
-rw-r--r-- | drivers/unix/ip_unix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/ip_unix.cpp b/drivers/unix/ip_unix.cpp index d32592e81a..42b5bbfaf2 100644 --- a/drivers/unix/ip_unix.cpp +++ b/drivers/unix/ip_unix.cpp @@ -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; } |