From dae5ce8db9dbe74e0ffb00e0e0da26a35d10fc86 Mon Sep 17 00:00:00 2001 From: David Goulet Date: Thu, 23 Feb 2012 17:19:29 -0500 Subject: [PATCH] Fix useless variable Signed-off-by: David Goulet --- src/bin/lttng-sessiond/context.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/bin/lttng-sessiond/context.c b/src/bin/lttng-sessiond/context.c index e4c9a51bf..402da2fd1 100644 --- a/src/bin/lttng-sessiond/context.c +++ b/src/bin/lttng-sessiond/context.c @@ -337,7 +337,7 @@ int context_ust_add(struct ltt_ust_session *usess, int domain, struct lttng_event_context *ctx, char *event_name, char *channel_name) { - int ret = LTTCOMM_OK, have_event = 0, no_chan = 1; + int ret = LTTCOMM_OK, have_event = 0; struct lttng_ht_iter iter; struct lttng_ht *chan_ht; struct ltt_ust_channel *uchan = NULL; @@ -409,7 +409,6 @@ int context_ust_add(struct ltt_ust_session *usess, int domain, } else if (!uchan && !have_event) { /* Add ctx all events, all channels */ /* For all channels */ cds_lfht_for_each_entry(chan_ht->ht, &iter.iter, uchan, node.node) { - no_chan = 0; ret = add_uctx_to_channel(usess, domain, uchan, ctx); if (ret < 0) { ERR("Context failed for channel %s", uchan->name); -- 2.34.1