From eb71b6fcaa43c3743b93386b9651789e2a60ffcb Mon Sep 17 00:00:00 2001 From: Michael Reed Date: Tue, 16 Sep 2014 22:24:23 -0400 Subject: [PATCH] view.c: Fix typo --- viewer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/viewer.c b/viewer.c index fd62cff..5fedbf7 100644 --- a/viewer.c +++ b/viewer.c @@ -90,7 +90,7 @@ int ncurses_display(deck_t *deck, int notrans, int nofade) { if((max_cols > COLS) || (max_lines + bar_top + bar_bottom + 2 > LINES)) { - fprintf(stderr, "Error: Terminal size %ix%i to small. Need at least %ix%i.\n", + fprintf(stderr, "Error: Terminal size %ix%i too small. Need at least %ix%i.\n", COLS, LINES, max_cols, max_lines + bar_top + bar_bottom + 2); endwin(); return(1); -- 2.20.1