Skip to content

Commit

Permalink
Fixed frown value for padEnd
Browse files Browse the repository at this point in the history
  • Loading branch information
davidepalladino-apuliasoft committed Dec 9, 2024
1 parent f80c3e8 commit 2440d0a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ private fun coerceString(value: StringValue, type: Type): Value {
if (value.isBlank()) {
type.blank()
} else {
DataStructValue(value.value.padEnd(6))
DataStructValue(value.value.padEnd(type.elementSize))
}
}
is CharacterType -> {
Expand Down

0 comments on commit 2440d0a

Please sign in to comment.