Skip to content

Commit 0d6e3ab

Browse files
committed
Fix explorer producer
1 parent d6880cd commit 0d6e3ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

producers/explorer/src/ExplorerProducer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ class ExplorerProducer : public eudaq::Producer {
480480
FD_ZERO( &fdset );
481481
FD_SET( fd, &fdset );
482482

483-
struct timeval tv_timeout = { (int)timeout, static_cast<__suseconds_t>(timeout*1000000) };
483+
struct timeval tv_timeout = { (int)timeout, static_cast<suseconds_t>(timeout*1000000) };
484484

485485
int select_retval = select( fd+1, &fdset, NULL, NULL, &tv_timeout );
486486

0 commit comments

Comments
 (0)