commands/uploader: don't take the address of unowned.Committer

This commit is contained in:
Taylor Blau 2017-01-19 14:45:41 -07:00
parent 7a42d46a09
commit 4e29278572

@ -167,7 +167,7 @@ func (c *uploadContext) Await() {
Print("Unable to push %d locked file(s):", ul)
for _, unowned := range c.unownedLocks {
Print("* %s - %s", unowned.Path, &unowned.Committer)
Print("* %s - %s", unowned.Path, unowned.Committer)
}
} else if len(c.ownedLocks) > 0 {
Print("Consider unlocking your own locked file(s): (`git lfs unlock <path>`)")