Fix: missing context type string in save for ust context
[lttng-tools.git] / src / bin / lttng-sessiond / save.c
index 18d303cac9184cbd82ba0671c4b92e75b8eb91e0..8afdbb5002bcb9a7e0bf8ef1d3871ed6e1c7d300 100644 (file)
@@ -258,8 +258,12 @@ const char *get_ust_context_type_string(
        case LTTNG_UST_CONTEXT_PTHREAD_ID:
                context_type_string = config_event_context_pthread_id;
                break;
+       case LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER:
+               context_type_string = config_event_context_perf_thread_counter;
+               break;
        default:
                context_type_string = NULL;
+               break;
        }
 
        return context_type_string;
This page took 0.025631 seconds and 5 git commands to generate.