mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-12 09:58:36 +00:00
Remove GNU-style struct initialization.
Spotted by: clang Approved by: rpaulo
This commit is contained in:
parent
d87d5bbf82
commit
6ea677604a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=209092
@ -58,12 +58,12 @@ struct rssadapt_expavgctl {
|
||||
};
|
||||
|
||||
static struct rssadapt_expavgctl master_expavgctl = {
|
||||
rc_decay_denom : 16,
|
||||
rc_decay_old : 15,
|
||||
rc_thresh_denom : 8,
|
||||
rc_thresh_old : 4,
|
||||
rc_avgrssi_denom : 8,
|
||||
rc_avgrssi_old : 4
|
||||
.rc_decay_denom = 16,
|
||||
.rc_decay_old = 15,
|
||||
.rc_thresh_denom = 8,
|
||||
.rc_thresh_old = 4,
|
||||
.rc_avgrssi_denom = 8,
|
||||
.rc_avgrssi_old = 4
|
||||
};
|
||||
|
||||
#ifdef interpolate
|
||||
|
Loading…
Reference in New Issue
Block a user