diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-10-07 23:02:15 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-10-07 17:03:14 -0400 |
commit | 505e907db388185649d93925c9975d0a0704ea64 (patch) | |
tree | ca2747f7ebb45a8f0915469dee2d7fd89ddb697d /net/unix | |
parent | ea85a0a2dc7263de733b7d1d13a433d35fcf36f7 (diff) | |
download | linux-exynos-505e907db388185649d93925c9975d0a0704ea64.tar.gz linux-exynos-505e907db388185649d93925c9975d0a0704ea64.tar.bz2 linux-exynos-505e907db388185649d93925c9975d0a0704ea64.zip |
af_unix: remove 0 assignment on static
static values are automatically initialized to 0
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/unix')
-rw-r--r-- | net/unix/garbage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/unix/garbage.c b/net/unix/garbage.c index 9bc73f87f64a..99f7012b23b9 100644 --- a/net/unix/garbage.c +++ b/net/unix/garbage.c @@ -258,7 +258,7 @@ static void inc_inflight_move_tail(struct unix_sock *u) list_move_tail(&u->link, &gc_candidates); } -static bool gc_in_progress = false; +static bool gc_in_progress; #define UNIX_INFLIGHT_TRIGGER_GC 16000 void wait_for_unix_gc(void) |