From fccbca2cdfe5d8a377a01aa3abbb2f164f467346 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Tue, 6 Jun 2000 15:23:26 +0000 Subject: [PATCH] style lint; macro parameter names are lowercase --- lib/dns/rdata/rdatastructpre.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/dns/rdata/rdatastructpre.h b/lib/dns/rdata/rdatastructpre.h index 85302f0d82..52df9cfe14 100644 --- a/lib/dns/rdata/rdatastructpre.h +++ b/lib/dns/rdata/rdatastructpre.h @@ -31,9 +31,9 @@ typedef struct dns_rdatacommon { ISC_LINK(struct dns_rdatacommon) link; } dns_rdatacommon_t; -#define DNS_RDATACOMMON_INIT(DATA, RDTYPE, RDCLASS) \ +#define DNS_RDATACOMMON_INIT(data, rdtype, rdclass) \ do { \ - (DATA)->common.rdtype = (RDTYPE); \ - (DATA)->common.rdclass = (RDCLASS); \ - ISC_LINK_INIT(&(DATA)->common, link); \ + (data)->common.rdtype = (rdtype); \ + (data)->common.rdclass = (rdclass); \ + ISC_LINK_INIT(&(data)->common, link); \ } while (0)