Skip to content

Commit

Permalink
unncessary Sprintf
Browse files Browse the repository at this point in the history
  • Loading branch information
poolpOrg committed May 2, 2024
1 parent 78b62bb commit 4b54804
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filter-rspamd.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ func writeHeader(h string, t string) []string {
if i == 0 {
ret = append(ret, fmt.Sprintf("%s: %s", h, line))
} else {
ret = append(ret, fmt.Sprintf("%s", line))
ret = append(ret, line)
}
}
return ret
Expand Down

0 comments on commit 4b54804

Please sign in to comment.