nifm: use operator*() instead of .value() to get value of std::optional

This commit is contained in:
Sönke Holz 2021-08-13 00:24:33 +02:00
parent 970d81abfc
commit acca8aca8c

View File

@ -330,7 +330,7 @@ private:
IPC::ResponseBuilder rb{ctx, 3}; IPC::ResponseBuilder rb{ctx, 3};
rb.Push(ResultSuccess); rb.Push(ResultSuccess);
rb.PushRaw(ipv4.value()); rb.PushRaw(*ipv4);
} }
void CreateTemporaryNetworkProfile(Kernel::HLERequestContext& ctx) { void CreateTemporaryNetworkProfile(Kernel::HLERequestContext& ctx) {
LOG_DEBUG(Service_NIFM, "called"); LOG_DEBUG(Service_NIFM, "called");
@ -366,7 +366,7 @@ private:
const IpConfigInfo ip_config_info{ const IpConfigInfo ip_config_info{
.ip_address_setting{ .ip_address_setting{
.is_automatic{true}, .is_automatic{true},
.current_address{ipv4.value()}, .current_address{*ipv4},
.subnet_mask{255, 255, 255, 0}, .subnet_mask{255, 255, 255, 0},
.gateway{192, 168, 1, 1}, .gateway{192, 168, 1, 1},
}, },