1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 20:47:45 +00:00

LibCrypto: Fix a mistake in appendff() conversion

This commit is contained in:
Andreas Kling 2021-05-07 21:56:45 +02:00
parent c989550c09
commit 05dbf3891a

View file

@ -150,7 +150,7 @@ public:
virtual String class_name() const override
{
return String::formatted("SHA{%zu}", DigestSize * 8);
return String::formatted("SHA{}", DigestSize * 8);
}
inline virtual void reset() override