From 8ad052589d4a783e83e80f6f6012c1ba57f8a173 Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Tue, 28 Jun 2016 16:11:07 -0400 Subject: [PATCH] Fix: comment for errors propagation Signed-off-by: Jonathan Rajotte --- src/bin/lttng/commands/create.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/lttng/commands/create.c b/src/bin/lttng/commands/create.c index f3783a534..707f5ee7d 100644 --- a/src/bin/lttng/commands/create.c +++ b/src/bin/lttng/commands/create.c @@ -310,7 +310,7 @@ static int create_session_basic (const char *session_name, } if (ret < 0) { - /* Don't set ret so lttng can interpret the sessiond error. */ + /* Don't set ret so the sessiond error is propagated. */ switch (-ret) { case LTTNG_ERR_EXIST_SESS: WARN("Session %s already exists", session_name); -- 2.34.1