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:
parent
229efaf486
commit
3fef6b154d
1 changed files with 1 additions and 1 deletions
|
@ -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)...
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
|
Loading…
Reference in a new issue