summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-09-11 14:50:10 -0400
committerLioncash <mathew1800@gmail.com>2015-09-11 14:59:49 -0400
commit60b3fc01a2377e51d5d8acb497c75f41daf14030 (patch)
treee6f64223500d6f579a924b1c53b6a20813abf1ee /src/core/hle
parent506ab0623811b2a9443bc263ca64d3ac8f8c8356 (diff)
General: Replace NULL and '0' usages with nullptr where applicable
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/soc_u.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/soc_u.cpp b/src/core/hle/service/soc_u.cpp
index d768a3fc7..633b66fe2 100644
--- a/src/core/hle/service/soc_u.cpp
+++ b/src/core/hle/service/soc_u.cpp
@@ -485,7 +485,7 @@ static void GetHostId(Service::Interface* self) {
addrinfo* res;
hints.ai_family = AF_INET;
- getaddrinfo(name, NULL, &hints, &res);
+ getaddrinfo(name, nullptr, &hints, &res);
sockaddr_in* sock_addr = reinterpret_cast<sockaddr_in*>(res->ai_addr);
in_addr* addr = &sock_addr->sin_addr;