Skip to content
Snippets Groups Projects
Commit 5cc398ef authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by android code review
Browse files

Merge "Toolbox implementation of chown has a bad print"

parents 13438a93 69ab6de3
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