Skip to content

Commit

Permalink
Fix ERTS_POLL_DEBUG_PRINT usage
Browse files Browse the repository at this point in the history
  • Loading branch information
okeuday committed Aug 22, 2014
1 parent ceb0e42 commit ceec6ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erts/emulator/sys/common/erl_poll.c
Original file line number Diff line number Diff line change
Expand Up @@ -2157,7 +2157,7 @@ ERTS_POLL_EXPORT(erts_poll_wait)(ErtsPollSet ps,

#ifdef ERTS_POLL_DEBUG_PRINT
erts_printf("Entering erts_poll_wait(), timeout=%d\n",
(int) tv->tv_sec*1000 + tv->tv_usec/1000);
(int) tvp->tv_sec*1000 + tvp->tv_usec/1000);
#endif

if (ERTS_POLLSET_SET_POLLED_CHK(ps)) {
Expand Down

0 comments on commit ceec6ba

Please sign in to comment.