Commit df44a479 df44a47997cfe1c0f9e33333f446fac0987be413 by Sergey Poznyakoff

Minor fix

* mh/prompter.c (main): Use mu_stream_printf instead of printf
1 parent 7227fdff
...@@ -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);
......