From b1353fb9185928249f273340c601244291e269fe Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 7 Sep 2015 17:12:57 -0500 Subject: Remove prompt argument from yesno(), caller can fprintf(stderr, "blah") itself. This fixes the build break, the change to yesno() prototype accidentally got checked in last commit. (Oops, sorry.) --- toys/posix/find.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'toys/posix/find.c') diff --git a/toys/posix/find.c b/toys/posix/find.c index 99cf5e2f..10585294 100644 --- a/toys/posix/find.c +++ b/toys/posix/find.c @@ -421,10 +421,8 @@ static int do_find(struct dirtree *new) if (aa->dir) aa->prev = (void *)1; if (*s == 'o') { - char *prompt = xmprintf("[%s] %s", ss1, name); - test = yesno(prompt, 0); - free(prompt); - if (!test) { + fprintf(stderr, "[%s] %s", ss1, name); + if (!(test = yesno(0))) { free(name); goto cont; } -- cgit v1.2.3