From a36d12d3f4249bd99d037e05745d8438baa5ca23 Mon Sep 17 00:00:00 2001 From: PTRCoder Date: Sat, 24 Aug 2024 14:44:44 +0200 Subject: [PATCH] Fixed log message error --- src/core/hle/service/nwm/nwm_uds.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/nwm/nwm_uds.cpp b/src/core/hle/service/nwm/nwm_uds.cpp index 962e68aad..857724be4 100644 --- a/src/core/hle/service/nwm/nwm_uds.cpp +++ b/src/core/hle/service/nwm/nwm_uds.cpp @@ -594,7 +594,7 @@ void NWM_UDS::RecvBeaconBroadcastData(Kernel::HLERequestContext& ctx) { MacAddress mac_address; rp.PopRaw(mac_address); - LOG_WARNING(Service_NWM, "MAC: {}", std::string str(std::begin(mac_address), std::end(mac_address))); + LOG_WARNING(Service_NWM, "MAC: {}", mac_address); rp.Skip(9, false);