Skip to content
Snippets Groups Projects
Commit e3cc055c authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

include/net: Remove unnecessary semicolons


Semicolons are not necessary after switch/while/for/if braces
so remove them.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6403eab1
No related branches found
No related tags found
No related merge requests found
......@@ -601,7 +601,7 @@ static inline int ipver2af(__u8 ipver)
return AF_INET6;
default:
return 0;
};
}
}
/* Convert from an address parameter type to an address family. */
......@@ -614,7 +614,7 @@ static inline int param_type2af(__be16 type)
return AF_INET6;
default:
return 0;
};
}
}
/* Perform some sanity checks. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment