diff --git a/AK/Format.h b/AK/Format.h index e3be0e57050..90f2b5bf182 100644 --- a/AK/Format.h +++ b/AK/Format.h @@ -405,7 +405,7 @@ struct Formatter : Formatter { Formatter formatter { *this }; return formatter.format(builder, reinterpret_cast(value)); } - Formatter::format(builder, { value, Size }); + return Formatter::format(builder, { value, Size }); } }; template<>