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

parasite: typo fix

regs_orig is a pointer on struct user_task_regs

Signed-off-by: Andrew Vagin <avagin@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Andrew Vagin
2013-05-27 15:24:31 +04:00
committed by Pavel Emelyanov
parent d79fc6d375
commit ce4cd8d49d

View File

@@ -133,7 +133,7 @@ retry_signal:
* and retry.
*/
if (ptrace(PTRACE_SETREGS, pid, NULL, &regs_orig)) {
if (ptrace(PTRACE_SETREGS, pid, NULL, regs_orig)) {
pr_perror("Can't set registers (pid: %d)", pid);
goto err;
}