0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-17 15:30:52 +01:00

ircd::db: Fix formatting; fix format string.

This commit is contained in:
Jason Volk 2020-02-27 14:22:52 -08:00
parent db6b809a2b
commit 59d90f69c2

View file

@ -7268,7 +7268,7 @@ ircd::db::error::error(const rocksdb::Status &s)
{ {
fmt::sprintf fmt::sprintf
{ {
buf, "(%u:%u:%u %s): %s", buf, "(%u:%u:%u %s) :%s",
this->code, this->code,
this->subcode, this->subcode,
this->severity, this->severity,
@ -7293,7 +7293,7 @@ ircd::db::error::error(generate_skip_t,
} }
,severity ,severity
{ {
s.severity() s.severity()
} }
{ {
} }