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)
if (!prepend_option && !rapid_option)
{
printf ("\n--------%s\n\n", _("Enter additional text"));
mu_stream_printf (strout, "\n--------%s\n\n", _("Enter additional text"));
while ((newval = prompter_get_line ()))
{
mu_stream_write (tmp, newval, strlen (newval), NULL);
......