diff --git a/mythtv/libs/libmythtv/recorders/dvbchannel.cpp b/mythtv/libs/libmythtv/recorders/dvbchannel.cpp index ccad0124c9f..d7a26b125a3 100644 --- a/mythtv/libs/libmythtv/recorders/dvbchannel.cpp +++ b/mythtv/libs/libmythtv/recorders/dvbchannel.cpp @@ -1589,12 +1589,9 @@ bool DVBChannel::WaitForBackend(std::chrono::milliseconds timeout_ms) const int fd = m_fdFrontend; auto seconds = duration_cast(timeout_ms); auto usecs = duration_cast(timeout_ms) - seconds; -#if defined(__x86_64__) - struct timeval select_timeout = { seconds.count(), usecs.count()}; -#else - struct timeval select_timeout = { static_cast(seconds.count()), - static_cast(usecs.count()) }; -#endif + struct timeval select_timeout = { + static_cast(seconds.count()), + static_cast(usecs.count())}; fd_set fd_select_set; FD_ZERO( &fd_select_set); // NOLINT(readability-isolate-declaration) FD_SET (fd, &fd_select_set);