TextUI.cc:306:17: error: format specifies type 'int' but the argument has type 'time_t' (aka 'long long') [-Werror,-Wformat]
306 | printw("%ds",ic->getIdleSeconds());
| ~~ ^~~~~~~~~~~~~~~~~~~~
| %lld
TextUI.cc:308:17: error: format specifies type 'int' but the argument has type 'time_t' (aka 'long long') [-Werror,-Wformat]
308 | printw("%dm",ic->getIdleSeconds()/60);
| ~~ ^~~~~~~~~~~~~~~~~~~~~~~
| %lld
TextUI.cc:310:17: error: format specifies type 'int' but the argument has type 'time_t' (aka 'long long') [-Werror,-Wformat]
310 | printw("%dh",ic->getIdleSeconds()/3600);
| ~~ ^~~~~~~~~~~~~~~~~~~~~~~~~
| %lld
3 errors generated.