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),