aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2015-01-20 23:56:29 +0100
committerPřemysl Janouch <p.janouch@gmail.com>2015-01-20 23:56:29 +0100
commitbb9802f83d5220fecee046960d8fb528210123b2 (patch)
tree515fbea190846ed527afb3b89ec48470328f7ee7 /src
parenta5e0c0ea7161b2c248c0347314afa851560e1a41 (diff)
downloadtdv-bb9802f83d5220fecee046960d8fb528210123b2.tar.gz
tdv-bb9802f83d5220fecee046960d8fb528210123b2.tar.xz
tdv-bb9802f83d5220fecee046960d8fb528210123b2.zip
resize_term -> resizeterm
Apparently we do need to call the "outer-level" function.
Diffstat (limited to 'src')
-rw-r--r--src/utils.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/utils.c b/src/utils.c
index ebbd4a9..b7aa5da 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -85,19 +85,19 @@ xstrtoul (unsigned long *out, const char *s, int base)
void
update_curses_terminal_size (void)
{
-#if defined (HAVE_RESIZE_TERM) && defined (TIOCGWINSZ)
+#if defined (HAVE_RESIZETERM) && defined (TIOCGWINSZ)
struct winsize size;
if (!ioctl (STDOUT_FILENO, TIOCGWINSZ, (char *) &size))
{
char *row = getenv ("LINES");
char *col = getenv ("COLUMNS");
unsigned long tmp;
- resize_term (
+ resizeterm (
(row && xstrtoul (&tmp, row, 10)) ? tmp : size.ws_row,
(col && xstrtoul (&tmp, col, 10)) ? tmp : size.ws_col);
}
-#else // HAVE_RESIZE_TERM && TIOCGWINSZ
+#else // HAVE_RESIZETERM && TIOCGWINSZ
endwin ();
refresh ();
-#endif // HAVE_RESIZE_TERM && TIOCGWINSZ
+#endif // HAVE_RESIZETERM && TIOCGWINSZ
}