summaryrefslogtreecommitdiff
path: root/mimeview
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2005-03-14 08:04:26 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2005-03-14 08:04:26 +0000
commit558b9e4d52aa34257effbfebc87b8cecb7841a53 (patch)
treedd5eb772aace14028e461536bce976f2dbc409b0 /mimeview
parentf885ce872fed0b0d807d8fbe18272d160b40665c (diff)
downloadmailutils-558b9e4d52aa34257effbfebc87b8cecb7841a53.tar.gz
mailutils-558b9e4d52aa34257effbfebc87b8cecb7841a53.tar.bz2
(b_string): Bugfix
Diffstat (limited to 'mimeview')
-rw-r--r--mimeview/mimetypes.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/mimeview/mimetypes.y b/mimeview/mimetypes.y
index 31a0eb893..480943432 100644
--- a/mimeview/mimetypes.y
+++ b/mimeview/mimetypes.y
@@ -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;

Return to:

Send suggestions and report system problems to the System administrator.