Add protective parentheses for macro argument, missed in r247671.

This commit is contained in:
mav 2013-03-02 22:41:06 +00:00
parent a5e43a09af
commit b9da6c918f

View File

@ -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)