mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +00:00
AK: Fix ignored .to_string() errors in IPv4Address
This commit is contained in:
parent
f183745f4e
commit
35e1e12360
Notes:
sideshowbarker
2024-07-17 05:06:13 +09:00
Author: https://github.com/MacDue Commit: https://github.com/SerenityOS/serenity/commit/35e1e12360 Pull-request: https://github.com/SerenityOS/serenity/pull/16986 Reviewed-by: https://github.com/linusg
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ template<>
|
|||
struct Formatter<IPv4Address> : Formatter<ErrorOr<NonnullOwnPtr<Kernel::KString>>> {
|
||||
ErrorOr<void> format(FormatBuilder& builder, IPv4Address value)
|
||||
{
|
||||
return Formatter<ErrorOr<NonnullOwnPtr<Kernel::KString>>>::format(builder, value.to_string());
|
||||
return Formatter<ErrorOr<NonnullOwnPtr<Kernel::KString>>>::format(builder, TRY(value.to_string()));
|
||||
}
|
||||
};
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue