From 51e03e9132094dbc36434889a3dbd62ebe7ec6ef Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Fri, 20 May 2016 17:00:54 -0400 Subject: [PATCH] Fix: Missing semicolon after debug statement MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- src/bin/lttng-sessiond/save.c | 2 +- src/bin/lttng/commands/add_context.c | 2 +- src/common/consumer.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/lttng-sessiond/save.c b/src/bin/lttng-sessiond/save.c index e9f651ce2..6f095ec27 100644 --- a/src/bin/lttng-sessiond/save.c +++ b/src/bin/lttng-sessiond/save.c @@ -903,7 +903,7 @@ int save_ust_context(struct config_writer *writer, context_type_string = get_ust_context_type_string( ctx->ctx.ctx); if (!context_type_string) { - ERR("Unsupported UST context type.") + ERR("Unsupported UST context type."); ret = LTTNG_ERR_INVALID; goto end; } diff --git a/src/bin/lttng/commands/add_context.c b/src/bin/lttng/commands/add_context.c index c6f4946a0..2890a4304 100644 --- a/src/bin/lttng/commands/add_context.c +++ b/src/bin/lttng/commands/add_context.c @@ -631,7 +631,7 @@ static int add_context(char *session_name) opt_channel_name); } else { MSG("%s context %s added to all channels", - get_domain_str(dom.type), type->opt->symbol) + get_domain_str(dom.type), type->opt->symbol); } success = 1; } diff --git a/src/common/consumer.c b/src/common/consumer.c index 45c2785b2..1c6838be2 100644 --- a/src/common/consumer.c +++ b/src/common/consumer.c @@ -1010,7 +1010,7 @@ struct lttng_consumer_channel *consumer_allocate_channel(uint64_t key, CDS_INIT_LIST_HEAD(&channel->streams.head); - DBG("Allocated channel (key %" PRIu64 ")", channel->key) + DBG("Allocated channel (key %" PRIu64 ")", channel->key); end: return channel; -- 2.34.1