From 1f0e88343a6018ba06bf777781fb5e638cf66035 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Wed, 24 May 2017 19:55:52 +0200 Subject: style: spaces after for loops --- src/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/device.c') diff --git a/src/device.c b/src/device.c index a06750a..a4a1104 100644 --- a/src/device.c +++ b/src/device.c @@ -307,7 +307,7 @@ static int newlink(struct net *src_net, struct net_device *dev, struct nlattr *t wg->incoming_handshakes_worker = alloc_percpu(struct handshake_worker); if (!wg->incoming_handshakes_worker) goto error_2; - for_each_possible_cpu(cpu) { + for_each_possible_cpu (cpu) { per_cpu_ptr(wg->incoming_handshakes_worker, cpu)->wg = wg; INIT_WORK(&per_cpu_ptr(wg->incoming_handshakes_worker, cpu)->work, packet_process_queued_handshake_packets); } -- cgit v1.2.3-59-g8ed1b