actions: introduce lttng_action_init
[lttng-tools.git] / src / common / actions / notify.c
index 9d005b82365b9797c073408db5fa852f32385822..ea68c75fd0f0c38eba8255e7374033ec1928d5dd 100644 (file)
@@ -32,9 +32,9 @@ struct lttng_action *lttng_action_notify_create(void)
                goto end;
        }
 
-       notify->parent.type = LTTNG_ACTION_TYPE_NOTIFY;
-       notify->parent.serialize = lttng_action_notify_serialize;
-       notify->parent.destroy = lttng_action_notify_destroy;
+       lttng_action_init(&notify->parent, LTTNG_ACTION_TYPE_NOTIFY, NULL,
+                       lttng_action_notify_serialize,
+                       lttng_action_notify_destroy);
 end:
        return &notify->parent;
 }
This page took 0.024123 seconds and 4 git commands to generate.