Fix compiler warning

This commit is contained in:
Přemysl Eric Janouch 2015-07-15 22:57:12 +02:00
parent ad08545f8f
commit b257340ad2
1 changed files with 2 additions and 2 deletions

View File

@ -2963,8 +2963,8 @@ buffer_print_backlog (struct app_context *ctx, struct buffer *buffer)
print_status ("%s", buffer->name);
// That is, minus the buffer switch line and the readline prompt
int display_limit =
MAX (MAX (10, buffer->unseen_messages_count), g_terminal.lines - 2);
int display_limit = MAX (MAX (10,
(int) buffer->unseen_messages_count), g_terminal.lines - 2);
struct buffer_line *line = buffer->lines_tail;
int to_display = line != NULL;