X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fmisc%2Fwordexp.c;fp=src%2Fmisc%2Fwordexp.c;h=01217ab06328cd128dbd181d554532e423cffca1;hp=b0d6846fc69376ed2901eaa583eee25576a9b737;hb=90f09a0dde3b37ebfabc4d3f6e2bb64086b7e804;hpb=d251c2645c86e89704545337b955ff8b3e835290 diff --git a/src/misc/wordexp.c b/src/misc/wordexp.c index b0d6846f..01217ab0 100644 --- a/src/misc/wordexp.c +++ b/src/misc/wordexp.c @@ -83,7 +83,6 @@ int wordexp(const char *s, wordexp_t *we, int flags) cmd = malloc(len); if (!cmd) return WRDE_NOSPACE; snprintf(cmd, len, "printf %%s\\\\0 %s %s", s, redir); -printf("{%s}\n", cmd); f = popen(cmd, "r"); free(cmd); if (!f) return WRDE_NOSPACE;