From: Stephen Hemminger Date: Mon, 16 Jan 2023 17:18:58 +0000 (-0800) Subject: add space after keyword X-Git-Tag: v6.2.0~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46686c563b9110ff6b66240dc152924aa7de5380;p=thirdparty%2Fiproute2.git add space after keyword The style standard is to use space after keywords. Example: if (expr) verus if(expr) Signed-off-by: Stephen Hemminger --- diff --git a/dcb/dcb_app.c b/dcb/dcb_app.c index b9ac8f4bc..eeb78e70f 100644 --- a/dcb/dcb_app.c +++ b/dcb/dcb_app.c @@ -264,7 +264,7 @@ static int dcb_app_parse_pcp(__u32 *key, const char *arg) { int i; - for(i = 0; i < ARRAY_SIZE(pcp_names); i++) { + for (i = 0; i < ARRAY_SIZE(pcp_names); i++) { if (pcp_names[i] && strcmp(arg, pcp_names[i]) == 0) { *key = i; return 0; diff --git a/devlink/devlink.c b/devlink/devlink.c index 931a768a4..795f8318c 100644 --- a/devlink/devlink.c +++ b/devlink/devlink.c @@ -1963,7 +1963,7 @@ static int dl_argv_parse(struct dl *dl, uint64_t o_required, dl_arg_inc(dl); err = dl_argv_str(dl, §ionstr); - if(err) + if (err) return err; err = flash_overwrite_section_get(sectionstr, &opts->overwrite_mask); diff --git a/ip/iprule.c b/ip/iprule.c index 654ffffe3..458607efd 100644 --- a/ip/iprule.c +++ b/ip/iprule.c @@ -695,7 +695,7 @@ static int iprule_list_flush_or_save(int argc, char **argv, int action) else if (ret != 2) invarg("invalid dport range\n", *argv); filter.dport = r; - } else{ + } else { if (matches(*argv, "dst") == 0 || matches(*argv, "to") == 0) { NEXT_ARG();