mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove GNU-style struct initialization.
Spotted by: clang Approved by: rpaulo
This commit is contained in:
parent
d87d5bbf82
commit
6ea677604a
1 changed files with 6 additions and 6 deletions
|
|
@ -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 a new issue