From: Jérémie Galarneau Date: Fri, 20 May 2016 21:00:54 +0000 (-0400) Subject: Fix: Missing semicolon after debug statement X-Git-Tag: v2.6.3~2 X-Git-Url: https://git.lttng.org/?a=commitdiff_plain;h=51e03e9132094dbc36434889a3dbd62ebe7ec6ef;p=lttng-tools.git Fix: Missing semicolon after debug statement Signed-off-by: Jérémie Galarneau --- 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;