0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-25 23:14:13 +01:00

ircd::http: Fix buffer alignment.

This commit is contained in:
Jason Volk 2020-09-17 07:16:33 -07:00
parent 229efaf486
commit 3fef6b154d

View file

@ -425,7 +425,7 @@ ircd::http::error::error(const string_view &fmt,
code,
fmt::snstringf //TODO: XXX fmt::sstringf
{
3192, fmt, std::forward<args>(a)...
3072, fmt, std::forward<args>(a)...
}
}
{}