Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
df44a479
...
df44a47997cfe1c0f9e33333f446fac0987be413
authored
2015-07-02 11:23:22 +0300
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Minor fix
* mh/prompter.c (main): Use mu_stream_printf instead of printf
1 parent
7227fdff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mh/prompter.c
mh/prompter.c
View file @
df44a47
...
...
@@ -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
);
...
...
Please
register
or
sign in
to post a comment