diff options
author | Björn-Egil Dahlberg <[email protected]> | 2015-12-18 16:21:37 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2015-12-18 16:21:37 +0100 |
commit | aeb26c12c13dde2ab87298ae7aa4f625b10f0cf6 (patch) | |
tree | d875abe92e420690a2fec448d787386c0ae96806 /erts/emulator/beam | |
parent | fc3ec3e298b8908a7065297c7a824de5eec13a51 (diff) | |
parent | bc40e21224e871c9bcbb5c2f27854c308bc4fe01 (diff) | |
download | otp-aeb26c12c13dde2ab87298ae7aa4f625b10f0cf6.tar.gz otp-aeb26c12c13dde2ab87298ae7aa4f625b10f0cf6.tar.bz2 otp-aeb26c12c13dde2ab87298ae7aa4f625b10f0cf6.zip |
Merge branch 'lv/fix-compilation-with-vm-probes/OTP-13209'
* lv/fix-compilation-with-vm-probes/OTP-13209:
Fix compilation with `--enable-vm-probes`
Diffstat (limited to 'erts/emulator/beam')
-rw-r--r-- | erts/emulator/beam/erl_message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_message.c b/erts/emulator/beam/erl_message.c index ac5ec79fe4..b3e74e3e6a 100644 --- a/erts/emulator/beam/erl_message.c +++ b/erts/emulator/beam/erl_message.c @@ -765,7 +765,7 @@ erts_send_message(Process* sender, if (is_immed(DT_UTAG(sender))) utag = DT_UTAG(sender); else - utag = copy_struct(DT_UTAG(sender), dt_utag_size, ohp); + utag = copy_struct(DT_UTAG(sender), dt_utag_size, &hp, ohp); #ifdef DTRACE_TAG_HARDDEBUG erts_fprintf(stderr, "Dtrace -> (%T) Spreading tag (%T) with " |