diff options
Diffstat (limited to 'toys/pending')
-rw-r--r-- | toys/pending/crontab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toys/pending/crontab.c b/toys/pending/crontab.c index 35f6d659..05c98f2b 100644 --- a/toys/pending/crontab.c +++ b/toys/pending/crontab.c @@ -317,9 +317,9 @@ RETRY: } printf("%s: installing new crontab\n", toys.which->name); if (parse_crontab(tname)) { - snprintf(toybuf, sizeof(toybuf), "errors in crontab file, can't install.\n" + fprintf(stderr, "errors in crontab file, can't install.\n" "Do you want to retry the same edit? "); - if (!yesno(toybuf, 0)) { + if (!yesno(0)) { error_msg("edits left in '%s'", tname); return; } |