To follow the coding style of kernel the braces are removed/added and placed properly, if not. Signed-off-by: Arushi Singhal <arushisinghal19971997@xxxxxxxxx> --- extensions/libebt_802_3.c | 3 +-- extensions/libebt_ip.c | 5 ++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/extensions/libebt_802_3.c b/extensions/libebt_802_3.c index f05d02e..801fb51 100644 --- a/extensions/libebt_802_3.c +++ b/extensions/libebt_802_3.c @@ -111,8 +111,7 @@ static void br802_3_print(const void *ip, const struct xt_entry_match *match, } } -static struct xtables_match br802_3_match = -{ +static struct xtables_match br802_3_match = { .name = "802_3", .revision = 0, .version = XTABLES_VERSION, diff --git a/extensions/libebt_ip.c b/extensions/libebt_ip.c index 6b301e2..5943120 100644 --- a/extensions/libebt_ip.c +++ b/extensions/libebt_ip.c @@ -274,11 +274,10 @@ static void brip_print(const void *ip, const struct xt_entry_match *match, if (info->invflags & EBT_IP_PROTO) printf("! "); pe = getprotobynumber(info->protocol); - if (pe == NULL) { + if (pe == NULL) printf("%d ", info->protocol); - } else { + else printf("%s ", pe->p_name); - } } if (info->bitmask & EBT_IP_SPORT) { printf("--ip-sport "); -- 2.11.0 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html