Commit 775d3a3e authored by Linus Torvalds's avatar Linus Torvalds

Modern gcc's don't like labels without a statement.

Add empty statements to avoid warning.
parent 29a928e0
......@@ -1172,6 +1172,7 @@ static struct neighbour *neigh_get_next(struct seq_file *seq,
n = n->next;
/* Don't confuse "arp -a" w/ magic entries */
try_again:
;
} while (n && !(n->nud_state & ~NUD_NOARP));
if (n)
......
......@@ -715,6 +715,7 @@ static struct sock *raw_get_next(struct seq_file *seq, struct sock *sk)
do {
sk = sk->next;
try_again:
;
} while (sk && sk->family != PF_INET);
if (!sk && ++state->bucket < RAWV4_HTABLE_SIZE) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment