summaryrefslogtreecommitdiffhomepage
path: root/src/internal
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-05-23 00:37:40 +0000
committermidipix <writeonce@midipix.org>2018-05-22 23:49:13 -0400
commit105c6c4b81ce64192e304827942a9aa65c8dd059 (patch)
tree0884ca6cd305d5f659464d5fcae333cb8851a7ca /src/internal
parentf74847de24b8ef2f4eb56bf3c20554dd40969d7a (diff)
downloadntux-105c6c4b81ce64192e304827942a9aa65c8dd059.tar.bz2
ntux-105c6c4b81ce64192e304827942a9aa65c8dd059.tar.xz
argv.h: whitespace meditation.
Diffstat (limited to 'src/internal')
-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 b87e8ce..667fee8 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);