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
a7c98960
...
a7c98960f0bd0e362e28ec03693b28256584884f
authored
2005-11-26 19:54:39 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(msgset_negate): Fix loop break condition.
1 parent
bf897eed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mail/msgset.y
mail/msgset.y
View file @
a7c9896
...
...
@@ -445,7 +445,7 @@ msgset_negate (msgset_t *set)
size_t i;
msgset_t *first = NULL, *last = NULL;
for (i = 1; i < total; i++)
for (i = 1; i <
=
total; i++)
{
if (!msgset_member (set, i))
{
...
...
Please
register
or
sign in
to post a comment