summaryrefslogtreecommitdiff
path: root/dcb
diff options
context:
space:
mode:
authorStephen Hemminger <stephen@networkplumber.org>2023-01-16 09:18:58 -0800
committerStephen Hemminger <stephen@networkplumber.org>2023-01-16 09:18:58 -0800
commit46686c563b9110ff6b66240dc152924aa7de5380 (patch)
treef999ef956a0a3d195bf4bfe911723cd6c5a31542 /dcb
parent16ed170abf4b38f6ddc590a01f3314a7aa3923b8 (diff)
downloadiproute2-46686c563b9110ff6b66240dc152924aa7de5380.tar.gz
add space after keyword
The style standard is to use space after keywords. Example: if (expr) verus if(expr) Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Diffstat (limited to 'dcb')
-rw-r--r--dcb/dcb_app.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dcb/dcb_app.c b/dcb/dcb_app.c
index b9ac8f4b..eeb78e70 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;