(b_string): Bugfix
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -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; | ... | ... |
-
Please register or sign in to post a comment