aboutsummaryrefslogtreecommitdiff
path: root/lib/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lib.c')
-rw-r--r--lib/lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lib.c b/lib/lib.c
index 058c6386..c5fca3f7 100644
--- a/lib/lib.c
+++ b/lib/lib.c
@@ -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;