diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-05-24 19:55:52 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-05-30 18:07:28 +0200 |
commit | f1aaa8a3a5fe783dcb9008fa722bac755751a719 (patch) | |
tree | 135bbdf36401524058bdb2e397a24378c954ab9d /src/compat | |
parent | 672b76a098b99102a46712b1d982f550f97806f2 (diff) |
style: spaces after for loops
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/compat')
-rw-r--r-- | src/compat/compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compat/compat.h b/src/compat/compat.h index 31ff0b5..f9cfc08 100644 --- a/src/compat/compat.h +++ b/src/compat/compat.h @@ -141,7 +141,7 @@ static inline void netif_keep_dst(struct net_device *dev) typeof(type) __percpu *pcpu_stats = alloc_percpu(type); \ if (pcpu_stats) { \ int __cpu; \ - for_each_possible_cpu(__cpu) { \ + for_each_possible_cpu (__cpu) { \ typeof(type) *stat; \ stat = per_cpu_ptr(pcpu_stats, __cpu); \ u64_stats_init(&stat->syncp); \ |