From: Jérémie Galarneau Date: Mon, 7 Mar 2016 17:47:42 +0000 (-0500) Subject: Clean-up: missing space between cast operator and operand X-Git-Tag: v2.8.0-rc1~113 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=ee02239944bbb8b019bf5505bfc849fb0936e2f6 Clean-up: missing space between cast operator and operand Signed-off-by: Jérémie Galarneau --- diff --git a/src/bin/lttng-sessiond/ust-app.c b/src/bin/lttng-sessiond/ust-app.c index e3995bdf6..285467fbb 100644 --- a/src/bin/lttng-sessiond/ust-app.c +++ b/src/bin/lttng-sessiond/ust-app.c @@ -5955,7 +5955,7 @@ int ust_app_pid_get_channel_runtime_stats(struct ltt_ust_session *usess, } /* Get channel */ - lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter); + lttng_ht_lookup(ua_sess->channels, (void *) uchan->name, &uiter); ua_chan_node = lttng_ht_iter_get_node_str(&uiter); /* If the session is found for the app, the channel must be there */ assert(ua_chan_node);