0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-02 18:18:56 +02:00

ircd::exception: Fix inconsistent format string.

This commit is contained in:
Jason Volk 2020-10-22 02:01:52 -07:00
parent 0e32ff76cb
commit 52750835be

View file

@ -104,7 +104,7 @@ ircd::string(const mutable_buffer &buf,
{
return fmt::sprintf
{
buf, "%s: %s", ec.category().name(), ec.message()
buf, "%s :%s", ec.category().name(), ec.message()
};
}