Skip to content

Commit

Permalink
Merge pull request #2678 from git-lfs/filter-process-printf
Browse files Browse the repository at this point in the history
commands: fill in missing printf arg
  • Loading branch information
technoweenie authored Oct 24, 2017
2 parents 3480fa4 + 89baf4d commit 3c1b07a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/command_filter_process.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ func filterCommand(cmd *cobra.Command, args []string) {
}

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

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

0 comments on commit 3c1b07a

Please sign in to comment.