aboutsummaryrefslogtreecommitdiff
path: root/posix/wordexp.c
diff options
context:
space:
mode:
Diffstat (limited to 'posix/wordexp.c')
-rw-r--r--posix/wordexp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/posix/wordexp.c b/posix/wordexp.c
index 1c69af8a1c..268a0e8c86 100644
--- a/posix/wordexp.c
+++ b/posix/wordexp.c
@@ -1548,7 +1548,7 @@ envsubst:
pattern = qtd_pattern;
}
- if (pattern == NULL && (pattern = __strdup("")) == NULL)
+ if (pattern == NULL && (pattern = __strdup ("")) == NULL)
goto no_space;
error = wordexp (pattern, &we, flags);
@@ -1563,8 +1563,8 @@ envsubst:
assert (!quoted || we.we_wordc == 1);
/* Substitute */
- for (i = 0; i < we.we_wordc; i++)
- if (w_addword (pwordexp, __strdup(we.we_wordv[i]))
+ for (i = 0; i < we.we_wordc; ++i)
+ if (w_addword (pwordexp, __strdup (we.we_wordv[i]))
== WRDE_NOSPACE)
break;