about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/misc/wordexp.c1
1 files changed, 0 insertions, 1 deletions
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;