cmd/root: Use the correct verb format for string

https://github.com/containers/toolbox/pull/480
This commit is contained in:
Mario Sebastian Chacon 2020-06-15 11:23:02 -03:00 committed by Debarshi Ray
parent 0e5592bada
commit 9488c95038
1 changed files with 1 additions and 1 deletions

View File

@ -380,5 +380,5 @@ func validateSubIDFile(path string) (bool, error) {
}
}
return false, fmt.Errorf("failed to find an entry for user %s in %p", currentUser.Username, path)
return false, fmt.Errorf("failed to find an entry for user %s in %s", currentUser.Username, path)
}