From 1d500fed48dcde16dc38d6bdfa53862ca1db9a45 Mon Sep 17 00:00:00 2001 From: Christian Brauner Date: Thu, 15 Jul 2021 18:18:25 +0200 Subject: [PATCH] sync: fix log message Fixes: #3875 Suggested-by: Hank.shi Signed-off-by: Christian Brauner --- src/lxc/sync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lxc/sync.c b/src/lxc/sync.c index acdd6e77b..d8917ba7e 100644 --- a/src/lxc/sync.c +++ b/src/lxc/sync.c @@ -121,7 +121,7 @@ bool lxc_sync_wait_child(struct lxc_handler *handler, int sequence) bool lxc_sync_wake_child(struct lxc_handler *handler, int sequence) { - TRACE("Child waking parent with sequence %s", start_sync_to_string(sequence)); + TRACE("Parent waking child with sequence %s", start_sync_to_string(sequence)); return sync_wake(handler->sync_sock[1], sequence); } -- 2.47.2