diff options
author | Sverker Eriksson <[email protected]> | 2013-09-25 17:23:55 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2013-09-30 17:45:47 +0200 |
commit | d6d531012957f8e3315d44c2bcb10938ab5d6e72 (patch) | |
tree | ad8b22e509b8358437d76cccdec4091293c5d2ac /erts/emulator/beam/utils.c | |
parent | 98c01224ff2c0dacc97613c080cc0f7268c6b2f1 (diff) | |
download | otp-d6d531012957f8e3315d44c2bcb10938ab5d6e72.tar.gz otp-d6d531012957f8e3315d44c2bcb10938ab5d6e72.tar.bz2 otp-d6d531012957f8e3315d44c2bcb10938ab5d6e72.zip |
erts: Rename erts_bld_atom_uint_2tup_list to *_uword_*
and change from Uint to UWord values
Diffstat (limited to 'erts/emulator/beam/utils.c')
-rw-r--r-- | erts/emulator/beam/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/utils.c b/erts/emulator/beam/utils.c index bd2be7afca..0d75bbcc77 100644 --- a/erts/emulator/beam/utils.c +++ b/erts/emulator/beam/utils.c @@ -576,8 +576,8 @@ erts_bld_2tup_list(Uint **hpp, Uint *szp, } Eterm -erts_bld_atom_uint_2tup_list(Uint **hpp, Uint *szp, - Sint length, Eterm atoms[], Uint uints[]) +erts_bld_atom_uword_2tup_list(Uint **hpp, Uint *szp, + Sint length, Eterm atoms[], UWord uints[]) { Sint i; Eterm res = THE_NON_VALUE; |