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
558b9e4d
...
558b9e4d52aa34257effbfebc87b8cecb7841a53
authored
2005-03-14 08:04:26 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(b_string): Bugfix
1 parent
f885ce87
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mimeview/mimetypes.y
mimeview/mimetypes.y
View file @
558b9e4
...
...
@@ -365,7 +365,7 @@ b_string (union argument *args)
for (i = 0; i < str->len; i++)
{
int c = getc (mimeview_fp);
if (c == EOF || c != str->ptr[i])
if (c == EOF ||
(char)
c != str->ptr[i])
return 0;
}
return 1;
...
...
Please
register
or
sign in
to post a comment