From 560a6c233286ec736a7a7c570efc68161c9953be Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 9 Jul 2024 16:49:29 +0200 Subject: MHR-36: newoskrnl: Adding support for ARM64 based UEFI machines, (EPM UEFI) Signed-off-by: Amlal El Mahrouss --- Kernel/Sources/Network/IP.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Kernel/Sources/Network') diff --git a/Kernel/Sources/Network/IP.cxx b/Kernel/Sources/Network/IP.cxx index 676e12a8..6fef69f1 100644 --- a/Kernel/Sources/Network/IP.cxx +++ b/Kernel/Sources/Network/IP.cxx @@ -90,13 +90,13 @@ namespace Kernel return true; } - ErrorOr IPFactory::ToStringView(Ref ipv6) + ErrorOr IPFactory::ToStringView(Ref& ipv6) { auto str = StringBuilder::Construct(ipv6.Leak().Address()); return str; } - ErrorOr IPFactory::ToStringView(Ref ipv4) + ErrorOr IPFactory::ToStringView(Ref& ipv4) { auto str = StringBuilder::Construct(ipv4.Leak().Address()); return str; -- cgit v1.2.3