1
0
Fork 0

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>
wifi-calibration
Fabian Frederick 2014-10-07 23:02:15 +02:00 committed by David S. Miller
parent ea85a0a2dc
commit 505e907db3
1 changed files with 1 additions and 1 deletions

View File

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