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
25d17848
...
25d17848208ed8d03f966490b613c5ddfea7fb03
authored
2003-12-30 07:46:19 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Close output stream
1 parent
081d7706
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
examples/murun.c
examples/murun.c
View file @
25d1784
...
...
@@ -50,7 +50,7 @@ main (int argc, char *argv[])
int
i
=
1
;
char
*
cmdline
;
int
flags
=
MU_STREAM_READ
;
if
(
argc
>
1
&&
strcmp
(
argv
[
i
],
"--stdin"
)
==
0
)
{
read_stdin
=
1
;
...
...
@@ -96,5 +96,7 @@ main (int argc, char *argv[])
read_and_print
(
stream
,
out
);
stream_close
(
stream
);
stream_destroy
(
&
stream
,
stream_get_owner
(
stream
));
stream_close
(
out
);
stream_destroy
(
&
out
,
stream_get_owner
(
stream
));
return
0
;
}
...
...
Please
register
or
sign in
to post a comment