Commit 101775b1 authored by Andrew Vagin's avatar Andrew Vagin Committed by Pavel Emelyanov

seize: remove extra \n from the error message

Signed-off-by: 's avatarAndrew Vagin <avagin@virtuozzo.com>
Acked-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@virtuozzo.com>
parent 4429a4c9
...@@ -225,7 +225,7 @@ static int freezer_detach(void) ...@@ -225,7 +225,7 @@ static int freezer_detach(void)
pid = atoi(path); pid = atoi(path);
if (ptrace(PTRACE_DETACH, pid, NULL, NULL)) if (ptrace(PTRACE_DETACH, pid, NULL, NULL))
pr_perror("Unable to detach from %d\n", pid); pr_perror("Unable to detach from %d", pid);
} }
fclose(f); fclose(f);
return 0; return 0;
......
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