Cleanup: Rename abstract types to lttng_kernel_type
[lttng-modules.git] / src / probes / lttng-uprobes.c
index c44ed4f8da511349cd911faafa8440c3e49170a0..b738847f78ba51e8c7cb39044f27ef57bc7941db 100644 (file)
@@ -107,7 +107,7 @@ int lttng_create_uprobe_event(const char *name, struct lttng_event *event)
                goto error_fields;
        }
        fields[0].name = "ip";
-       fields[0].type.atype = atype_integer;
+       fields[0].type.type = lttng_kernel_type_integer;
        fields[0].type.u.integer.size = sizeof(unsigned long) * CHAR_BIT;
        fields[0].type.u.integer.alignment = lttng_alignof(unsigned long) * CHAR_BIT;
        fields[0].type.u.integer.signedness = lttng_is_signed_type(unsigned long);
This page took 0.023253 seconds and 4 git commands to generate.