Commit 558b9e4d 558b9e4d52aa34257effbfebc87b8cecb7841a53 by Sergey Poznyakoff

(b_string): Bugfix

1 parent f885ce87
......@@ -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;
......