diff options
-rw-r--r-- | drivers/md/bcache/sysfs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/md/bcache/sysfs.h b/drivers/md/bcache/sysfs.h index 4da5f451d286..9d5845874931 100644 --- a/drivers/md/bcache/sysfs.h +++ b/drivers/md/bcache/sysfs.h @@ -88,11 +88,11 @@ do { \ #define strtoul_restrict_or_return(cp, min, max) \ ({ \ - unsigned long _v = 0; \ - int _r = strtoul_safe_restrict(cp, _v, min, max); \ + unsigned long __v = 0; \ + int _r = strtoul_safe_restrict(cp, __v, min, max); \ if (_r) \ return _r; \ - _v; \ + __v; \ }) #define strtoi_h_or_return(cp) \ |