X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng%2Fcommands%2Fadd_context.c;h=90a54f7eef87eae4a884737a9d8a8bba67d3d98f;hb=a0377dfefe40662ba7d68617bce6ff467114136c;hp=b33eb1d14ef22545b73baeceed6d6a19424b9e8c;hpb=d37ac3cdc4fe21f117edfb829db4d0eb7cf914a1;p=lttng-tools.git diff --git a/src/bin/lttng/commands/add_context.c b/src/bin/lttng/commands/add_context.c index b33eb1d14..90a54f7ee 100644 --- a/src/bin/lttng/commands/add_context.c +++ b/src/bin/lttng/commands/add_context.c @@ -15,10 +15,10 @@ #include #include #include -#include #include +#include #include #include "../command.h" @@ -558,7 +558,7 @@ enum lttng_domain_type get_domain(void) } else if (opt_log4j) { return LTTNG_DOMAIN_LOG4J; } else { - assert(0); + abort(); } } @@ -810,11 +810,13 @@ static int add_context(char *session_name) } else { if (opt_channel_name) { MSG("%s context %s added to channel %s", - get_domain_str(dom.type), type->opt->symbol, + lttng_domain_type_str(dom.type), + type->opt->symbol, opt_channel_name); } else { MSG("%s context %s added to all channels", - get_domain_str(dom.type), type->opt->symbol); + lttng_domain_type_str(dom.type), + type->opt->symbol); } success = 1; }