summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEmanuele Torre <torreemanuele6@gmail.com>2023-04-27 19:01:28 +0200
committerDaniel Stenberg <daniel@haxx.se>2023-04-27 23:26:50 +0200
commit7f712399d5338a2dd838a8bb16ca1548b491dfb3 (patch)
treea8d7f5e8c2eb84a53976527af1067e5370187592 /src
parent5cdff4f5a92797ce49a3cd01e27388cce35aab7a (diff)
downloadcurl-7f712399d5338a2dd838a8bb16ca1548b491dfb3.tar.gz
checksrc: check for spaces before the colon of switch labels
Closes #11047
Diffstat (limited to 'src')
-rw-r--r--src/tool_dirhie.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tool_dirhie.c b/src/tool_dirhie.c
index fb1b74950..929d18e2a 100644
--- a/src/tool_dirhie.c
+++ b/src/tool_dirhie.c
@@ -74,7 +74,7 @@ static void show_dir_errno(FILE *errors, const char *name)
"exceeded your quota.\n", name);
break;
#endif
- default :
+ default:
fprintf(errors, "Error creating directory %s.\n", name);
break;
}