X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=lttng%2Flttng.c;h=62585528808125dbc3a65eb925448809ad5542fe;hp=6cc540922a77b78ebd29c505255bfa54ad65996b;hb=ebafd2a5241f74a15c0e563af001b8d651962392;hpb=e065084a507dd07b658b3d26c58b1ddd519e25a0 diff --git a/lttng/lttng.c b/lttng/lttng.c index 6cc540922..625855288 100644 --- a/lttng/lttng.c +++ b/lttng/lttng.c @@ -56,14 +56,12 @@ static int process_client_opt(void) /* Connect to the session daemon */ ret = lttng_connect_sessiond(); if (ret < 0) { - ERR("%s", lttng_get_readable_code(ret)); goto end; } if (opt_list_apps) { ret = process_opt_list_apps(); if (ret < 0) { - ERR("%s", lttng_get_readable_code(ret)); goto end; } } @@ -71,6 +69,7 @@ static int process_client_opt(void) return 0; end: + ERR("%s", lttng_get_readable_code(ret)); return ret; }