From: Christian Brauner Date: Thu, 15 Jul 2021 16:18:25 +0000 (+0200) Subject: sync: fix log message X-Git-Tag: lxc-4.0.10~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=401e36705c2bde6ea934dcf3632a39a120767a27;p=thirdparty%2Flxc.git sync: fix log message Fixes: #3875 Suggested-by: Hank.shi Signed-off-by: Christian Brauner --- 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); }