mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Conrrect a macro with parenthesis.
This commit is contained in:
parent
0e59fec6d8
commit
c41767dc4e
1 changed files with 1 additions and 1 deletions
|
|
@ -564,7 +564,7 @@ typedef struct {
|
|||
u_int16_t pdb_options;
|
||||
u_int8_t pdb_mstate;
|
||||
u_int8_t pdb_sstate;
|
||||
#define BITS2WORD(x) (x)[0] << 16 | (x)[3] << 8 | (x)[2]
|
||||
#define BITS2WORD(x) ((x)[0] << 16 | (x)[3] << 8 | (x)[2])
|
||||
u_int8_t pdb_hardaddr_bits[4];
|
||||
u_int8_t pdb_portid_bits[4];
|
||||
u_int8_t pdb_nodename[8];
|
||||
|
|
|
|||
Loading…
Reference in a new issue