Piotr Kubaj aa03dfb264 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());
      |                                 ~~   ^~~~~~~~~~~~~~~~~~~~
      |                                 %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.
2025-01-12 22:41:57 +01:00
..