diff --git a/win/curses/curswins.c b/win/curses/curswins.c index 006589510..81d8ab435 100644 --- a/win/curses/curswins.c +++ b/win/curses/curswins.c @@ -87,7 +87,7 @@ curses_create_window(int width, int height, orient orientation) switch (orientation) { default: impossible("curses_create_window: Bad orientation"); - /* fall through to centre */ + /*FALLTHRU*/ case CENTER: startx = (term_cols / 2) - (width / 2); starty = (term_rows / 2) - (height / 2);