Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 505e907d authored by Fabian Frederick's avatar Fabian Frederick Committed by David S. Miller
Browse files

af_unix: remove 0 assignment on static



static values are automatically initialized to 0

Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ea85a0a2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)