diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/nifm/nifm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/nifm/nifm.cpp b/src/core/hle/service/nifm/nifm.cpp index 168053d80..f2ab4ffaa 100644 --- a/src/core/hle/service/nifm/nifm.cpp +++ b/src/core/hle/service/nifm/nifm.cpp | |||
| @@ -324,7 +324,7 @@ private: | |||
| 324 | 324 | ||
| 325 | auto ipv4 = Network::GetHostIPv4Address(); | 325 | auto ipv4 = Network::GetHostIPv4Address(); |
| 326 | if (!ipv4) { | 326 | if (!ipv4) { |
| 327 | LOG_CRITICAL(Service_NIFM, "Couldn't get host IPv4 address, defaulting to 0.0.0.0"); | 327 | LOG_ERROR(Service_NIFM, "Couldn't get host IPv4 address, defaulting to 0.0.0.0"); |
| 328 | ipv4.emplace(Network::IPv4Address{0, 0, 0, 0}); | 328 | ipv4.emplace(Network::IPv4Address{0, 0, 0, 0}); |
| 329 | } | 329 | } |
| 330 | 330 | ||
| @@ -359,7 +359,7 @@ private: | |||
| 359 | 359 | ||
| 360 | auto ipv4 = Network::GetHostIPv4Address(); | 360 | auto ipv4 = Network::GetHostIPv4Address(); |
| 361 | if (!ipv4) { | 361 | if (!ipv4) { |
| 362 | LOG_CRITICAL(Service_NIFM, "Couldn't get host IPv4 address, defaulting to 0.0.0.0"); | 362 | LOG_ERROR(Service_NIFM, "Couldn't get host IPv4 address, defaulting to 0.0.0.0"); |
| 363 | ipv4.emplace(Network::IPv4Address{0, 0, 0, 0}); | 363 | ipv4.emplace(Network::IPv4Address{0, 0, 0, 0}); |
| 364 | } | 364 | } |
| 365 | 365 | ||