Skip to content

Commit 3c1b07a

Browse files
authored
Merge pull request #2678 from git-lfs/filter-process-printf
commands: fill in missing printf arg
2 parents 3480fa4 + 89baf4d commit 3c1b07a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands/command_filter_process.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ func filterCommand(cmd *cobra.Command, args []string) {
200200
}
201201

202202
if len(malformedOnWindows) > 0 {
203-
fmt.Fprintf(os.Stderr, "Encountered %d file(s) that may not have been copied correctly on Windows:\n")
203+
fmt.Fprintf(os.Stderr, "Encountered %d file(s) that may not have been copied correctly on Windows:\n", len(malformedOnWindows))
204204

205205
for _, m := range malformedOnWindows {
206206
fmt.Fprintf(os.Stderr, "\t%s\n", m)

0 commit comments

Comments
 (0)