common: replace container_of with a C++ safe implementation
[lttng-tools.git] / src / bin / lttng-sessiond / snapshot.cpp
index 1601f17ccc2f0918f1bb81b0c6cc0fe00796ca23..e0ffe69c0b1a5303cebfe908ab99cee7eb2220d1 100644 (file)
@@ -276,7 +276,7 @@ struct snapshot_output *snapshot_find_output_by_id(uint32_t id,
                DBG3("Snapshot output not found with id %" PRId32, id);
                goto error;
        }
-       output = caa_container_of(node, struct snapshot_output, node);
+       output = lttng::utils::container_of(node, &snapshot_output::node);
 
 error:
        return output;
This page took 0.023123 seconds and 4 git commands to generate.