diff options
author | Rickard Green <[email protected]> | 2015-06-05 17:25:22 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2015-06-10 18:04:14 +0200 |
commit | fe1c0d26d4e6180b79fc8497b827ac2ef1f471d5 (patch) | |
tree | 28899814f114afc00b5baa0b2e227838c98b39ae /erts/emulator/beam/dist.c | |
parent | 014865c474c4e8229cae556d9dff22ba75d6a5bb (diff) | |
download | otp-fe1c0d26d4e6180b79fc8497b827ac2ef1f471d5.tar.gz otp-fe1c0d26d4e6180b79fc8497b827ac2ef1f471d5.tar.bz2 otp-fe1c0d26d4e6180b79fc8497b827ac2ef1f471d5.zip |
Delayed node table GC
Diffstat (limited to 'erts/emulator/beam/dist.c')
-rw-r--r-- | erts/emulator/beam/dist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/dist.c b/erts/emulator/beam/dist.c index 142fcb3c00..cfdede793c 100644 --- a/erts/emulator/beam/dist.c +++ b/erts/emulator/beam/dist.c @@ -2522,7 +2522,7 @@ info_dist_entry(int to, void *arg, DistEntry *dep, int visible, int connected) erts_print(to, arg, "Name: %T", dep->sysname); #ifdef DEBUG - erts_print(to, arg, " (refc=%d)", erts_refc_read(&dep->refc, 1)); + erts_print(to, arg, " (refc=%d)", erts_refc_read(&dep->refc, 0)); #endif erts_print(to, arg, "\n"); if (!connected && is_nil(dep->cid)) { |