From: Aydın Mercan Date: Fri, 17 May 2024 13:52:42 +0000 (+0300) Subject: reinsert accidentally removed + in db trace X-Git-Tag: v9.20.0~28^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03a59cbb04943f6fecb1bb84535ff9d29679bdda;p=thirdparty%2Fbind9.git reinsert accidentally removed + in db trace It only affects development when using `DNS_DB_TRACE`. --- diff --git a/lib/dns/db.c b/lib/dns/db.c index 013065c26d3..ad082bbe2be 100644 --- a/lib/dns/db.c +++ b/lib/dns/db.c @@ -151,7 +151,7 @@ dns_db_create(isc_mem_t *mctx, const char *db_type, const dns_name_t *origin, #if DNS_DB_TRACE fprintf(stderr, "dns_db_create:%s:%s:%d:%p->references = 1\n", - __func__, __FILE__, __LINE__ 1, *dbp); + __func__, __FILE__, __LINE__ + 1, *dbp); #endif return (result); }