From d148baae9e045d55bf298740da59585e46f6b89a Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Fri, 25 Feb 2011 17:19:08 +0100 Subject: [PATCH] gui: Replace NCURSES_SIZE_T by ordinary size_t. With the old type, gui.c does not compile on curses implementations other than ncurses. --- gui.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gui.c b/gui.c index 38addd98..3c1889ca 100644 --- a/gui.c +++ b/gui.c @@ -33,10 +33,10 @@ static int signal_pipe; static struct win_data { WINDOW *win; - NCURSES_SIZE_T begx; - NCURSES_SIZE_T begy; - NCURSES_SIZE_T cols; - NCURSES_SIZE_T lines; + size_t begx; + size_t begy; + size_t cols; + size_t lines; } top, bot, sb, in, sep; #define RINGBUFFER_SIZE 512 -- 2.39.2