2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-31 06:15:24 +00:00

Assorted trivial message fixes

* kid -> child
* First letter should be uppercase
* Misc typos in messages and comments

Signed-off-by: Kir Kolyshkin <kir@openvz.org>
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
This commit is contained in:
Kir Kolyshkin
2012-02-01 02:08:04 +04:00
committed by Cyrill Gorcunov
parent ad3bc05771
commit 1408ead858
6 changed files with 13 additions and 12 deletions

View File

@@ -326,7 +326,8 @@ int main(int argc, char *argv[])
break;
case 'D':
if (chdir(optarg)) {
pr_perror("can't change working directory");
pr_perror("Can't change directory to %s",
optarg);
return -1;
}
break;
@@ -411,6 +412,6 @@ usage:
return -1;
opt_pid_missing:
printk("No pid specified, -t or -p option missed?\n");
printk("No pid specified (-t or -p option missing)\n");
return -1;
}