From: Christian Brauner Date: Thu, 15 Jul 2021 16:18:25 +0000 (+0200) Subject: sync: fix log message X-Git-Tag: lxc-5.0.0~138^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d500fed48dcde16dc38d6bdfa53862ca1db9a45;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); }