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
12db0b51
...
12db0b51721fdc2bb96d117400312a3781687f76
authored
2005-06-13 09:49:56 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(refill): Removed useless typecase
1 parent
8e9561ed
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/stream.c
mailbox/stream.c
View file @
12db0b5
...
...
@@ -819,7 +819,7 @@ refill (stream_t stream, off_t offset)
stream
->
rbuffer
.
count
=
0
;
status
=
stream
->
_read
(
stream
,
stream
->
rbuffer
.
ptr
,
stream
->
rbuffer
.
bufsiz
,
offset
,
(
size_t
*
)
&
(
stream
->
rbuffer
.
count
)
);
&
stream
->
rbuffer
.
count
);
return
status
;
}
return
ENOSYS
;
...
...
Please
register
or
sign in
to post a comment