mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 10:59:35 -05:00
style lint; macro parameter names are lowercase
This commit is contained in:
parent
9e532f8f5e
commit
fccbca2cdf
1 changed files with 4 additions and 4 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue