mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Add protective parentheses for macro argument, missed in r247671.
This commit is contained in:
parent
25e533d3e5
commit
27eae7e9ad
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ do { \
|
|||
|
||||
#define mod_timer(timer, exp) \
|
||||
do { \
|
||||
(timer)->expires = exp; \
|
||||
(timer)->expires = (exp); \
|
||||
callout_reset(&(timer)->timer_callout, (exp) - jiffies, \
|
||||
_timer_fn, (timer)); \
|
||||
} while (0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue