diff options
author | Kian-Meng, Ang <kianmeng@cpan.org> | 2021-11-26 05:23:41 +0800 |
---|---|---|
committer | Kian-Meng, Ang <kianmeng@cpan.org> | 2021-11-30 05:54:43 +0800 |
commit | 94ea7e2e10f4fe7979af7fe23f27d4ee07bd156b (patch) | |
tree | fd3a22568c87589a9e10918856d29f74cb505347 /erts/emulator/beam/binary.c | |
parent | 295c7189c086d9e22a0b50d6d9bd759767053107 (diff) | |
download | erlang-94ea7e2e10f4fe7979af7fe23f27d4ee07bd156b.tar.gz |
Fix typos in erts/emulator/beam
Diffstat (limited to 'erts/emulator/beam/binary.c')
-rw-r--r-- | erts/emulator/beam/binary.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/binary.c b/erts/emulator/beam/binary.c index a006553ef3..3b4a463660 100644 --- a/erts/emulator/beam/binary.c +++ b/erts/emulator/beam/binary.c @@ -996,7 +996,7 @@ BIF_RETTYPE erts_list_to_binary_bif(Process *c_p, Eterm arg, Export *bif) break; /* done */ } if (!ERTS_IOLIST_TO_BUF_FAILED(res)) - ERTS_INTERNAL_ERROR("iolist_size/iolist_to_buf missmatch"); + ERTS_INTERNAL_ERROR("iolist_size/iolist_to_buf mismatch"); if (res == ERTS_IOLIST_TO_BUF_OVERFLOW) goto overflow; goto type_error; @@ -1106,7 +1106,7 @@ BIF_RETTYPE list_to_bitstring_1(BIF_ALIST_1) break; /* done */ } if (!ERTS_IOLIST_TO_BUF_FAILED(res)) - ERTS_INTERNAL_ERROR("iolist_size/iolist_to_buf missmatch"); + ERTS_INTERNAL_ERROR("iolist_size/iolist_to_buf mismatch"); if (res == ERTS_IOLIST_TO_BUF_OVERFLOW) goto overflow; goto type_error; |