Fix: lttng: list_triggers: use proper format specifier for uint64_t
[lttng-tools.git] / src / bin / lttng / commands / list_triggers.c
index 329fd293ae5ac21978735232b086b4dc299cc6e6..512f250138fa906ade4073f012374328732d22d5 100644 (file)
@@ -432,7 +432,7 @@ void print_condition_on_event(const struct lttng_condition *condition)
        assert(condition_status == LTTNG_CONDITION_STATUS_OK);
 
        error_count = lttng_condition_on_event_get_error_count(condition);
-       MSG("    tracer notifications discarded: %ld", error_count);
+       MSG("    tracer notifications discarded: %" PRIu64, error_count);
 
        if (cap_desc_count > 0) {
                MSG("    captures:");
This page took 0.023014 seconds and 4 git commands to generate.