AK: Add missing return in Formatter<unsigned char[Size]>::format()

Caught by ENABLE_ALL_THE_DEBUG_MACROS.
This commit is contained in:
Andreas Kling 2021-11-17 07:44:02 +01:00
parent 216e21a1fa
commit 8fe1c1f788

View file

@ -405,7 +405,7 @@ struct Formatter<unsigned char[Size]> : Formatter<StringView> {
Formatter<FlatPtr> formatter { *this };
return formatter.format(builder, reinterpret_cast<FlatPtr>(value));
}
Formatter<StringView>::format(builder, { value, Size });
return Formatter<StringView>::format(builder, { value, Size });
}
};
template<>