From: Michael Göhler Date: Tue, 7 Oct 2014 21:07:06 +0000 (+0200) Subject: Merge pull request #44 from mjhanninen/fix-typo X-Git-Url: https://git.danieliu.xyz/?a=commitdiff_plain;h=d35a52bc79a1f8b1b1cd48519b7a9aef86439633;hp=0536954ac954afb43b46322566ae55fddb7eafe1;p=smdp.git Merge pull request #44 from mjhanninen/fix-typo Fix typo in error message --- diff --git a/src/viewer.c b/src/viewer.c index 6dbde0c..2de71e4 100644 --- a/src/viewer.c +++ b/src/viewer.c @@ -146,7 +146,7 @@ int ncurses_display(deck_t *deck, int notrans, int nofade, int invert) { endwin(); // print error - fprintf(stderr, "Error: Terminal heigth (%i lines) too small. Need at least %i lines.\n", LINES, max_lines + bar_top + bar_bottom); + fprintf(stderr, "Error: Terminal height (%i lines) too small. Need at least %i lines.\n", LINES, max_lines + bar_top + bar_bottom); fprintf(stderr, "You may need to add additional horizontal rules ('***') to split your file in shorter slides.\n"); return 1;