From 4ce2eaf1b351382011010d041001d86c1c56c216 Mon Sep 17 00:00:00 2001 From: VolcaEM <63682805+VolcaEM@users.noreply.github.com> Date: Mon, 27 Apr 2020 02:51:28 +0200 Subject: [PATCH] Address review comments (2/2) --- src/core/hle/service/nifm/nifm.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/hle/service/nifm/nifm.cpp b/src/core/hle/service/nifm/nifm.cpp index 4427cd453a..11e410ff74 100644 --- a/src/core/hle/service/nifm/nifm.cpp +++ b/src/core/hle/service/nifm/nifm.cpp @@ -13,8 +13,8 @@ namespace Service::NIFM { -constexpr ResultCode ERR_NO_INTERNET_CONNECTION = {ErrorModule::NIFM, 0x12C}; -constexpr ResultCode ERR_OBJECT_IS_NULL = {ErrorModule::NIFM, 0x15E}; +constexpr ResultCode ERR_NO_INTERNET_CONNECTION{ErrorModule::NIFM, 0x12C}; +constexpr ResultCode ERR_OBJECT_IS_NULL{ErrorModule::NIFM, 0x15E}; enum class RequestState : u32 { NotSubmitted = 1, @@ -223,7 +223,7 @@ private: void GetCurrentIpAddress(Kernel::HLERequestContext& ctx) { LOG_WARNING(Service_NIFM, "(STUBBED) called"); - auto const current_ip_address = + const auto current_ip_address = network_profile_data.ip_data.address_settings.ip_address.address; IPC::ResponseBuilder rb{ctx, 3};