From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 19 Nov 2025 17:18:45 +0000 (-0500) Subject: spelling: guaranteed X-Git-Tag: rec-5.4.0-alpha1~61^2~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe0462c7b8ca30c31800d572b88852561319b161;p=thirdparty%2Fpdns.git spelling: guaranteed Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- diff --git a/pdns/channel.hh b/pdns/channel.hh index a7ba0ee13b..33a554af3a 100644 --- a/pdns/channel.hh +++ b/pdns/channel.hh @@ -243,7 +243,7 @@ namespace channel not even to release it, so let's transfer it to a local object */ auto localObj = std::move(object); auto ptr = localObj.get(); - static_assert(sizeof(ptr) <= PIPE_BUF, "Writes up to PIPE_BUF are guaranted not to interleaved and to either fully succeed or fail"); + static_assert(sizeof(ptr) <= PIPE_BUF, "Writes up to PIPE_BUF are guaranteed not to interleaved and to either fully succeed or fail"); while (true) { #if __SANITIZE_THREAD__ __tsan_release(ptr);