Skip to content

Commit

Permalink
Fix explorer producer
Browse files Browse the repository at this point in the history
  • Loading branch information
arummler committed Aug 18, 2016
1 parent d6880cd commit 0d6e3ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion producers/explorer/src/ExplorerProducer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ class ExplorerProducer : public eudaq::Producer {
FD_ZERO( &fdset );
FD_SET( fd, &fdset );

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

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

Expand Down

0 comments on commit 0d6e3ab

Please sign in to comment.