view.c: Fix typo
authorMichael Reed <supertron421@gmail.com>
Wed, 17 Sep 2014 02:24:23 +0000 (22:24 -0400)
committerMichael Reed <supertron421@gmail.com>
Wed, 17 Sep 2014 02:24:23 +0000 (22:24 -0400)
viewer.c

index fd62cff..5fedbf7 100644 (file)
--- 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);