Commit 58ad0888 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov

restore: Fix typo in shmem_wait_and_open

Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
parent 80492c78
......@@ -154,7 +154,7 @@ static int shmem_wait_and_open(struct shmem_info *si)
pr_info("%d: Waiting for [%s] to appear\n", getpid(), path);
cr_wait_until(&si->lock, 1);
pr_info("%d: Opening shmem [%s] \n", si->real_pid, path);
pr_info("%d: Opening shmem [%s] \n", getpid(), path);
ret = open(path, O_RDWR);
if (ret >= 0)
return ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment