summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-05-23 00:37:40 +0000
committermidipix <writeonce@midipix.org>2018-05-23 00:03:12 -0400
commit307cae3f9570579fb21989efe537854be46337bf (patch)
tree29c527a87639b469250c40b2e69a44fcb1dc20e9 /src
parent2ff4441c16fecbbcbd9d0fa46997abbc6c03277f (diff)
downloadsofort-307cae3f9570579fb21989efe537854be46337bf.tar.bz2
sofort-307cae3f9570579fb21989efe537854be46337bf.tar.xz
argv.h: whitespace meditation.
Diffstat (limited to 'src')
-rw-r--r--src/internal/argv/argv.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/internal/argv/argv.h b/src/internal/argv/argv.h
index 6c68c36..cd80eb8 100644
--- a/src/internal/argv/argv.h
+++ b/src/internal/argv/argv.h
@@ -355,13 +355,16 @@ static void argv_scan(
}
if (option->optarg == ARGV_OPTARG_NONE) {
- if (!fnext && ch && (*ch == '-'))
+ if (!fnext && ch && (*ch == '-')) {
ferr = ARGV_ERROR_OPTARG_NONE;
- else
+ } else {
fval = false;
- } else if (!fnext)
+ }
+
+ } else if (!fnext) {
fval = true;
- else if (option->optarg == ARGV_OPTARG_REQUIRED) {
+
+ } else if (option->optarg == ARGV_OPTARG_REQUIRED) {
if (ch && is_short_option(ch))
ferr = ARGV_ERROR_OPTARG_REQUIRED;
else if (ch && is_long_option(ch))
@@ -385,8 +388,9 @@ static void argv_scan(
else
fval = ch;
}
- } else
+ } else {
ferr = ARGV_ERROR_SHORT_OPTION;
+ }
} else if (!fnoscan && (fhybrid || is_long_option(ch))) {
ch += (fhybrid ? 1 : 2);