From: Michael Reed Date: Wed, 17 Sep 2014 02:24:23 +0000 (-0400) Subject: view.c: Fix typo X-Git-Url: https://git.danieliu.xyz/?p=smdp.git;a=commitdiff_plain;h=eb71b6fcaa43c3743b93386b9651789e2a60ffcb view.c: Fix typo --- 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);