[CRIU] [PATCH 03/14] prepare_pstree_ids(): improve an error message

Kir Kolyshkin kir at openvz.org
Thu Mar 23 15:02:00 PDT 2017


I guess this is a followup to commit 59e80d4.

1 s/determinate/figure out/ (there is no "determinate" verb in English)

2 moved 'with' to the end

Cc: Cyrill Gorcunov <gorcunov at openvz.org>
Signed-off-by: Kir Kolyshkin <kir at openvz.org>
---
 criu/pstree.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/criu/pstree.c b/criu/pstree.c
index f86b75a..5113544 100644
--- a/criu/pstree.c
+++ b/criu/pstree.c
@@ -743,8 +743,8 @@ static int prepare_pstree_ids(void)
 			parent = item->parent;
 			while (parent && vpid(parent) != item->sid) {
 				if (parent->born_sid != -1 && parent->born_sid != item->sid) {
-					pr_err("Can't determinate with which sid (%d or %d)"
-						"the process %d was born\n",
+					pr_err("Can't figure out which sid (%d or %d)"
+						"the process %d was born with\n",
 						parent->born_sid, item->sid, vpid(parent));
 					return -1;
 				}
-- 
2.9.3



More information about the CRIU mailing list