From 514224c015c28fc57e605f9ffb44d9ca48902e5b Mon Sep 17 00:00:00 2001 From: MacDue Date: Thu, 12 Jan 2023 22:14:12 +0000 Subject: [PATCH] AK: Fix ignored .to_string() errors in IPv6Address --- AK/IPv6Address.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AK/IPv6Address.h b/AK/IPv6Address.h index c7d006a515..b6b47e27ce 100644 --- a/AK/IPv6Address.h +++ b/AK/IPv6Address.h @@ -284,7 +284,7 @@ template<> struct Formatter : Formatter>> { ErrorOr format(FormatBuilder& builder, IPv6Address const& value) { - return Formatter>>::format(builder, value.to_string()); + return Formatter>>::format(builder, TRY(value.to_string())); } }; #else