Skip to content

Commit

Permalink
meta: fmt fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Dec 11, 2024
1 parent 7493516 commit 1c313a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tlv.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ func prettyPrint(tlvs []TLV, sb *strings.Builder, level int) {
prettyPrint(tlv.TLVs, sb, level+1)
} else {
if filter, ok := tagFilters[tlv.Tag]; ok {
sb.WriteString(fmt.Sprintf(" %s", filter(tlv.Value)))
sb.WriteString(" " + filter(tlv.Value))
} else {
sb.WriteString(fmt.Sprintf(" %X", tlv.Value))
}
Expand Down

0 comments on commit 1c313a8

Please sign in to comment.