diff options
author | Sverker Eriksson <[email protected]> | 2016-10-26 17:22:32 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-10-26 17:41:05 +0200 |
commit | 3223059923314313ffff9c7b09ab0a73bf18238b (patch) | |
tree | b7e3b2671f430642c9d5c0a3bc3da115e37e9a2e /erts/emulator/beam/external.c | |
parent | 42b9881d075344344a8c78026e282b40fa707a0c (diff) | |
download | otp-3223059923314313ffff9c7b09ab0a73bf18238b.tar.gz otp-3223059923314313ffff9c7b09ab0a73bf18238b.tar.bz2 otp-3223059923314313ffff9c7b09ab0a73bf18238b.zip |
erts: Remove unused argument to hipe_set_closure_stub
Diffstat (limited to 'erts/emulator/beam/external.c')
-rw-r--r-- | erts/emulator/beam/external.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/external.c b/erts/emulator/beam/external.c index 98df8a0726..a49b242d7c 100644 --- a/erts/emulator/beam/external.c +++ b/erts/emulator/beam/external.c @@ -3748,7 +3748,7 @@ dec_term_atom_common: funp->arity = arity; #ifdef HIPE if (funp->fe->native_address == NULL) { - hipe_set_closure_stub(funp->fe, num_free); + hipe_set_closure_stub(funp->fe); } #endif hp = factory->hp; |