mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-21 01:06:58 +00:00
criu: add a few missing newlines in pr_err()
Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
This commit is contained in:
parent
b939a4df02
commit
23d619a53c
2 changed files with 3 additions and 3 deletions
|
|
@ -1233,7 +1233,7 @@ static int veth_peer_info(struct net_link *link, struct newlink_req *req,
|
|||
return 0;
|
||||
}
|
||||
out:
|
||||
pr_err("Unknown peer net namespace");
|
||||
pr_err("Unknown peer net namespace\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
@ -1703,7 +1703,7 @@ static int restore_links()
|
|||
if (nrcreated == nrlinks)
|
||||
break;
|
||||
if (nrcreated == 0) {
|
||||
pr_err("Unable to restore network links");
|
||||
pr_err("Unable to restore network links\n");
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -302,7 +302,7 @@ static int resolve_rel_name(uint32_t id, struct unix_sk_desc *sk, const struct f
|
|||
dir[ret] = 0;
|
||||
|
||||
if (snprintf(path, sizeof(path), ".%s/%s", dir, sk->name) >= sizeof(path)) {
|
||||
pr_err("The path .%s/%s is too long", dir, sk->name);
|
||||
pr_err("The path .%s/%s is too long\n", dir, sk->name);
|
||||
goto err;
|
||||
}
|
||||
if (fstatat(mntns_root, path, &st, 0)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue