From: W.C.A. Wijngaards Date: Thu, 12 Jun 2025 07:57:23 +0000 (+0200) Subject: - xfr-tsig, fix warning in compile of declaration. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=182e580fe24f2bec4e6493e61b0ee1d76cdafacc;p=thirdparty%2Funbound.git - xfr-tsig, fix warning in compile of declaration. --- diff --git a/util/data/dname.c b/util/data/dname.c index 750f16cff..7d368377c 100644 --- a/util/data/dname.c +++ b/util/data/dname.c @@ -97,7 +97,7 @@ dname_valid(uint8_t* dname, size_t maxlen) /** compare uncompressed, noncanonical, registers are hints for speed */ int -query_dname_compare(const register uint8_t* d1, const register uint8_t* d2) +query_dname_compare(register const uint8_t* d1, register const uint8_t* d2) { register uint8_t lab1, lab2; log_assert(d1 && d2);