From ef1fd6d87f796afe5dbff7f99c156524a5cb75b1 Mon Sep 17 00:00:00 2001 From: SisMaker <1713699517@qq.com> Date: Fri, 11 Jun 2021 18:09:32 +0800 Subject: [PATCH] =?UTF-8?q?ft:=20=E4=BB=A3=E7=A0=81=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/eFmt.erl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/eFmt.erl b/src/eFmt.erl index ec80b02..f9e2bea 100644 --- a/src/eFmt.erl +++ b/src/eFmt.erl @@ -220,7 +220,7 @@ writeList([One], D, E, BinAcc) -> <>; writeList([One | List], D, E, BinAcc) -> if - D =:= 1 -> <>; + D =:= 1 -> <>; true -> VBin = writeTerm(One, D, E), writeList(List, D - 1, E, <>) @@ -324,7 +324,7 @@ writeList([One], Depth, Width, Encoding, Strings, SumLC, BinAcc) -> end; writeList([One | List], Depth, Width, Encoding, Strings, SumLC, BinAcc) -> if - Depth =:= 1 -> <>; + Depth =:= 1 -> <>; true -> TermBin = writeTerm(One, Depth, Width, Encoding, Strings), TermBinBinSize = byte_size(TermBin),