mirror of
https://github.com/matrix-construct/construct
synced 2025-01-13 08:23:56 +01:00
ircd::exception: Fix inconsistent format string.
This commit is contained in:
parent
0e32ff76cb
commit
52750835be
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue