From: Jérémie Galarneau Date: Wed, 11 Sep 2019 00:02:32 +0000 (-0400) Subject: Clean-up: remove dead assignment from ht cleanup thread launcher X-Git-Tag: v2.12.0-rc1~409 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=f2e086eddce40fb3b772f50f4cd8023f2cc2a10f;ds=sidebyside Clean-up: remove dead assignment from ht cleanup thread launcher Signed-off-by: Jérémie Galarneau --- diff --git a/src/bin/lttng-sessiond/ht-cleanup.c b/src/bin/lttng-sessiond/ht-cleanup.c index 02244f0ca..f5aab3309 100644 --- a/src/bin/lttng-sessiond/ht-cleanup.c +++ b/src/bin/lttng-sessiond/ht-cleanup.c @@ -269,7 +269,6 @@ struct lttng_thread *launch_ht_cleanup_thread(void) cleanup_ht_cleanup_thread, NULL); if (!thread) { - ret = -1; goto error; } return thread;