net/netfilter/x_tables.c:716:59-60: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci Signed-off-by: Fengguang Wu <fengguang.wu@xxxxxxxxx> --- x_tables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/net/netfilter/x_tables.c +++ b/net/netfilter/x_tables.c @@ -713,7 +713,7 @@ EXPORT_SYMBOL(xt_check_entry_offsets); unsigned int *xt_alloc_entry_offsets(unsigned int size) { if (size < (SIZE_MAX / sizeof(unsigned int))) - return kvmalloc(size * sizeof(unsigned int), GFP_KERNEL);; + return kvmalloc(size * sizeof(unsigned int), GFP_KERNEL); return NULL; -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>