Tidy up a little.

This commit is contained in:
rocky
2006-04-05 04:11:33 +00:00
parent 3c8e10bf67
commit a454dc7194

View File

@@ -1,5 +1,5 @@
/* /*
$Id: cdda-player.c,v 1.43 2006/04/05 03:52:21 rocky Exp $ $Id: cdda-player.c,v 1.44 2006/04/05 04:11:33 rocky Exp $
Copyright (C) 2005, 2006 Rocky Bernstein <rocky@panix.com> Copyright (C) 2005, 2006 Rocky Bernstein <rocky@panix.com>
@@ -213,17 +213,6 @@ tty_raw()
refresh(); refresh();
} }
/* Called when window is resized. */
static void
sigwinch()
{
endwin();
initscr();
getmaxyx(stdscr, LINE_LAST, COLS_LAST);
LINE_ACTION = LINE_LAST - 1;
action(NULL);
}
/*! Curses window finalization. */ /*! Curses window finalization. */
static void static void
tty_restore() tty_restore()
@@ -232,6 +221,15 @@ tty_restore()
endwin(); endwin();
} }
/* Called when window is resized. */
static void
sigwinch()
{
tty_restore();
tty_raw();
action(NULL);
}
/* Signal handler - Ctrl-C and others. */ /* Signal handler - Ctrl-C and others. */
static void static void
ctrlc(int signal) ctrlc(int signal)
@@ -853,7 +851,7 @@ usage(char *prog)
"way on a spare console and forget about it...\n" "way on a spare console and forget about it...\n"
"\n" "\n"
"(c) 1997,98 Gerd Knorr <kraxel@goldbach.in-berlin.de>\n" "(c) 1997,98 Gerd Knorr <kraxel@goldbach.in-berlin.de>\n"
"(c) 2005 Rocky Bernstein <rocky@panix.com>\n" "(c) 2005, 2006 Rocky Bernstein <rocky@panix.com>\n"
, prog, prog); , prog, prog);
} }