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/atom.h | |
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/atom.h')
-rw-r--r-- | erts/emulator/beam/atom.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/atom.h b/erts/emulator/beam/atom.h index f721999a4c..7efa2191ac 100644 --- a/erts/emulator/beam/atom.h +++ b/erts/emulator/beam/atom.h @@ -139,7 +139,7 @@ int atom_static_put(byte*, int); void init_atom_table(void); void atom_info(int, void *); void dump_atoms(int, void *); -int erts_atom_get(const char* name, int len, Eterm* ap, int is_latin1); +int erts_atom_get(const char* name, int len, Eterm* ap, ErtsAtomEncoding enc); void erts_atom_get_text_space_sizes(Uint *reserved, Uint *used); #endif |