diff options
Diffstat (limited to 'toys/posix/xargs.c')
-rw-r--r-- | toys/posix/xargs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/xargs.c b/toys/posix/xargs.c index e23d14c4..9a3e9dae 100644 --- a/toys/posix/xargs.c +++ b/toys/posix/xargs.c @@ -186,7 +186,7 @@ void xargs_main(void) for (i = 0; out[i]; ++i) fprintf(stderr, "%s ", out[i]); if (FLAG(p)) { fprintf(stderr, "?"); - doit = yesno(0); + doit = yesno(0); } else fprintf(stderr, "\n"); } |