Minor fix
* mh/prompter.c (main): Use mu_stream_printf instead of printf
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -287,7 +287,7 @@ main (int argc, char **argv) | ... | @@ -287,7 +287,7 @@ main (int argc, char **argv) |
287 | 287 | ||
288 | if (!prepend_option && !rapid_option) | 288 | if (!prepend_option && !rapid_option) |
289 | { | 289 | { |
290 | printf ("\n--------%s\n\n", _("Enter additional text")); | 290 | mu_stream_printf (strout, "\n--------%s\n\n", _("Enter additional text")); |
291 | while ((newval = prompter_get_line ())) | 291 | while ((newval = prompter_get_line ())) |
292 | { | 292 | { |
293 | mu_stream_write (tmp, newval, strlen (newval), NULL); | 293 | mu_stream_write (tmp, newval, strlen (newval), NULL); | ... | ... |
-
Please register or sign in to post a comment