diff options
author | Sverker Eriksson <[email protected]> | 2013-01-24 19:22:59 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2013-01-25 15:37:22 +0100 |
commit | 120d84e2eb38a98ff2c187c27ac53b49cc9e863a (patch) | |
tree | 5011e7c314a4208a7ab35e310f06c4e1b23ef589 /erts/emulator/beam/bif.c | |
parent | be062ca7528b3267a6ef08653b001913fc12ae8e (diff) | |
download | otp-120d84e2eb38a98ff2c187c27ac53b49cc9e863a.tar.gz otp-120d84e2eb38a98ff2c187c27ac53b49cc9e863a.tar.bz2 otp-120d84e2eb38a98ff2c187c27ac53b49cc9e863a.zip |
erts: Refactor erts_atom_get to use ErtsAtomEncoding
instead of 'is_latin1' boolean argument.
Diffstat (limited to 'erts/emulator/beam/bif.c')
-rw-r--r-- | erts/emulator/beam/bif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/bif.c b/erts/emulator/beam/bif.c index bde70911a2..97ab3fe809 100644 --- a/erts/emulator/beam/bif.c +++ b/erts/emulator/beam/bif.c @@ -2671,7 +2671,7 @@ BIF_RETTYPE list_to_existing_atom_1(BIF_ALIST_1) } else { Eterm a; - if (erts_atom_get(buf, i, &a, 1)) { + if (erts_atom_get(buf, i, &a, ERTS_ATOM_ENC_LATIN1)) { erts_free(ERTS_ALC_T_TMP, (void *) buf); BIF_RET(a); } else { |