From: Remi Gacogne Date: Tue, 27 May 2025 13:16:03 +0000 (+0200) Subject: auth: Fix formatting X-Git-Tag: dnsdist-2.0.0-beta1~61^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F15598%2Fhead;p=thirdparty%2Fpdns.git auth: Fix formatting --- diff --git a/modules/geoipbackend/geoipbackend.cc b/modules/geoipbackend/geoipbackend.cc index 7acf64d022..8f65ed2508 100644 --- a/modules/geoipbackend/geoipbackend.cc +++ b/modules/geoipbackend/geoipbackend.cc @@ -89,7 +89,8 @@ struct DirPtrDeleter - we avoid the annoying "ignoring attributes on template argument ‘int (*)(DIR*)’" warning from the compiler, which is there because closedir is tagged as __nonnull((1)) */ - void operator()(DIR* dirPtr) const noexcept { + void operator()(DIR* dirPtr) const noexcept + { closedir(dirPtr); } };