From: Mathieu Desnoyers Date: Tue, 25 Feb 2014 16:25:25 +0000 (-0500) Subject: Cleanup: add brackets to lttng-live-plugin.c X-Git-Tag: v1.2.0-rc2~8 X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=49a4acefd0905cd95253f91d3781c758999847c3 Cleanup: add brackets to lttng-live-plugin.c Signed-off-by: Mathieu Desnoyers --- diff --git a/formats/lttng-live/lttng-live-plugin.c b/formats/lttng-live/lttng-live-plugin.c index 1d0e0aa0..83c04582 100644 --- a/formats/lttng-live/lttng-live-plugin.c +++ b/formats/lttng-live/lttng-live-plugin.c @@ -102,8 +102,9 @@ int parse_url(const char *path, struct lttng_live_ctx *ctx) } } - if (ctx->port < 0) + if (ctx->port < 0) { ctx->port = LTTNG_DEFAULT_NETWORK_VIEWER_PORT; + } if (strlen(remain[2]) == 0) { printf_verbose("Connecting to hostname : %s, port : %d, " @@ -172,8 +173,9 @@ static int lttng_live_open_trace_read(const char *path) goto end_free; } - if (ctx->session_ids->len > 0) + if (ctx->session_ids->len > 0) { lttng_live_read(ctx); + } end_free: g_hash_table_destroy(ctx->session->ctf_traces);