diff options
author | Mikael Pettersson <[email protected]> | 2016-04-24 10:58:11 +0200 |
---|---|---|
committer | Mikael Pettersson <[email protected]> | 2016-05-05 12:50:14 +0200 |
commit | 98855709622835602b4c0a2d37e3f06ceb003af7 (patch) | |
tree | 5b6ee53de51a13128d994e05c9b5272d3deffa85 /erts/emulator/beam/global.h | |
parent | a152a8a4e6df5fca0ca6fb0a62ac8fea41b99571 (diff) | |
download | otp-98855709622835602b4c0a2d37e3f06ceb003af7.tar.gz otp-98855709622835602b4c0a2d37e3f06ceb003af7.tar.bz2 otp-98855709622835602b4c0a2d37e3f06ceb003af7.zip |
erts_new_mso_binary(): do not truncate len
Diffstat (limited to 'erts/emulator/beam/global.h')
-rw-r--r-- | erts/emulator/beam/global.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/global.h b/erts/emulator/beam/global.h index a7bc990deb..c8cf7c6191 100644 --- a/erts/emulator/beam/global.h +++ b/erts/emulator/beam/global.h @@ -946,7 +946,7 @@ ERTS_GLB_INLINE Eterm erts_equeue_get(ErtsEQueue *q) { void erts_emasculate_writable_binary(ProcBin* pb); Eterm erts_new_heap_binary(Process *p, byte *buf, int len, byte** datap); -Eterm erts_new_mso_binary(Process*, byte*, int); +Eterm erts_new_mso_binary(Process*, byte*, Uint); Eterm new_binary(Process*, byte*, Uint); Eterm erts_realloc_binary(Eterm bin, size_t size); |