Commit 558b9e4d 558b9e4d52aa34257effbfebc87b8cecb7841a53 by Sergey Poznyakoff

(b_string): Bugfix

1 parent f885ce87
...@@ -365,7 +365,7 @@ b_string (union argument *args) ...@@ -365,7 +365,7 @@ b_string (union argument *args)
365 for (i = 0; i < str->len; i++) 365 for (i = 0; i < str->len; i++)
366 { 366 {
367 int c = getc (mimeview_fp); 367 int c = getc (mimeview_fp);
368 if (c == EOF || c != str->ptr[i]) 368 if (c == EOF || (char)c != str->ptr[i])
369 return 0; 369 return 0;
370 } 370 }
371 return 1; 371 return 1;
......