summaryrefslogtreecommitdiff
path: root/erts/emulator
diff options
context:
space:
mode:
authorMichael Truog <mjtruog@gmail.com>2014-08-22 11:16:02 -0700
committerMichael Truog <mjtruog@gmail.com>2014-08-22 11:16:02 -0700
commitceec6ba5c24ceef3c074afc2b49d8e77c492c0c4 (patch)
tree4a8c132af563fd26e1455b119e645bfa74ee1d01 /erts/emulator
parentceb0e42d0b06f67fe0b18d44c47809e969c75997 (diff)
downloaderlang-ceec6ba5c24ceef3c074afc2b49d8e77c492c0c4.tar.gz
Fix ERTS_POLL_DEBUG_PRINT usage
Diffstat (limited to 'erts/emulator')
-rw-r--r--erts/emulator/sys/common/erl_poll.c2
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)) {