diff options
author | Marcus Arendt <[email protected]> | 2014-08-28 10:26:04 +0200 |
---|---|---|
committer | Marcus Arendt <[email protected]> | 2014-08-28 10:26:04 +0200 |
commit | deb3008fb728f2089e844a53c95a8d7bfb4dfb5c (patch) | |
tree | 5cf9b6b6bdf87546fd38f90da8a5d51440dfbcb2 /erts/emulator/sys | |
parent | 2fbce26b3fe4bd7b4401f0e1313b778c38be36b2 (diff) | |
parent | f5b36fc72e1ac37d00f82b7651b7ca06a628097f (diff) | |
download | otp-deb3008fb728f2089e844a53c95a8d7bfb4dfb5c.tar.gz otp-deb3008fb728f2089e844a53c95a8d7bfb4dfb5c.tar.bz2 otp-deb3008fb728f2089e844a53c95a8d7bfb4dfb5c.zip |
Merge branch 'maint'
Diffstat (limited to 'erts/emulator/sys')
-rw-r--r-- | erts/emulator/sys/common/erl_poll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/sys/common/erl_poll.c b/erts/emulator/sys/common/erl_poll.c index 0a58a625b2..aa412a20c8 100644 --- a/erts/emulator/sys/common/erl_poll.c +++ b/erts/emulator/sys/common/erl_poll.c @@ -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)) { |