net-mgmt/tcptrack: fix build on armv7 / powerpc
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());
| ~~ ^~~~~~~~~~~~~~~~~~~~
| %lldTextUI.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);
| ~~ ^~~~~~~~~~~~~~~~~~~~~~~
| %lldTextUI.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);
| ~~ ^~~~~~~~~~~~~~~~~~~~~~~~~
| %lld3 errors generated.