diff options
author | Sverker Eriksson <[email protected]> | 2013-02-27 16:01:42 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2013-02-27 16:01:42 +0100 |
commit | 67a1a8e0d68207e8d831963c8f235988feefcf61 (patch) | |
tree | 3e47f6c4965d1289b7412cb0be8339445d27f473 /lib/erl_interface | |
parent | 05f11890bdfec4bfc3a78e191a87e70a937ffc54 (diff) | |
download | otp-67a1a8e0d68207e8d831963c8f235988feefcf61.tar.gz otp-67a1a8e0d68207e8d831963c8f235988feefcf61.tar.bz2 otp-67a1a8e0d68207e8d831963c8f235988feefcf61.zip |
erl_interface: Remove superfluous comma in enum erlang_char_encoding
Diffstat (limited to 'lib/erl_interface')
-rw-r--r-- | lib/erl_interface/include/ei.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/erl_interface/include/ei.h b/lib/erl_interface/include/ei.h index f51f377b9c..9b83385a46 100644 --- a/lib/erl_interface/include/ei.h +++ b/lib/erl_interface/include/ei.h @@ -193,7 +193,7 @@ extern volatile int __erl_errno; typedef enum { ERLANG_ASCII = 1, ERLANG_LATIN1 = 2, - ERLANG_UTF8 = 4, + ERLANG_UTF8 = 4 }erlang_char_encoding; /* a pid */ |