Skip to content
Snippets Groups Projects
Commit 1e28088f authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Git Automerger
Browse files

am 5cc398ef: Merge "Toolbox implementation of chown has a bad print"

* commit '5cc398ef':
  Toolbox implementation of chown has a bad print
parents 428a6e3f 5cc398ef
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ int chown_main(int argc, char **argv)
for (i = 2; i < argc; i++) {
if (chown(argv[i], uid, gid) < 0) {
fprintf(stderr, "Unable to chmod %s: %s\n", argv[i], strerror(errno));
fprintf(stderr, "Unable to chown %s: %s\n", argv[i], strerror(errno));
return 10;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment