diff options
author | Rob Landley <rob@landley.net> | 2015-09-07 17:12:57 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-09-07 17:12:57 -0500 |
commit | b1353fb9185928249f273340c601244291e269fe (patch) | |
tree | e75f4ee65b3f88a1fd436b9605826c1df160f514 /lib | |
parent | 960100aa9cb588a73125d43ec0b0a7152a95b43f (diff) | |
download | toybox-b1353fb9185928249f273340c601244291e269fe.tar.gz |
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.)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -630,11 +630,11 @@ void base64_init(char *p) *(p++) = '/'; } -int yesno(char *prompt, int def) +int yesno(int def) { char buf; - fprintf(stderr, "%s (%c/%c):", prompt, def ? 'Y' : 'y', def ? 'n' : 'N'); + fprintf(stderr, " (%c/%c):", def ? 'Y' : 'y', def ? 'n' : 'N'); fflush(stderr); while (fread(&buf, 1, 1, stdin)) { int new; |