Message ID | 20230116172046.82178-1-stephen@networkplumber.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 46686c563b9110ff6b66240dc152924aa7de5380 |
Headers | show |
Series | [iproute] add space after keyword | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Not a local patch |
Hello: This patch was applied to iproute2/iproute2.git (main) by Stephen Hemminger <stephen@networkplumber.org>: On Mon, 16 Jan 2023 09:20:46 -0800 you wrote: > The style standard is to use space after keywords. > Example: > if (expr) > verus > if(expr) > > Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> > > [...] Here is the summary with links: - [iproute] add space after keyword https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/commit/?id=46686c563b91 You are awesome, thank you!
diff --git a/dcb/dcb_app.c b/dcb/dcb_app.c index b9ac8f4bce59..eeb78e70f63f 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 931a768a41d1..795f8318c0c4 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 654ffffe3cc0..458607efd93f 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();
The style standard is to use space after keywords. Example: if (expr) verus if(expr) Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> --- dcb/dcb_app.c | 2 +- devlink/devlink.c | 2 +- ip/iprule.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-)