X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=types%2Ffloat.c;h=7aeb9c3aacb5a0b7d6d0c36055e9d7575f58eb82;hp=16d435200a15d6a5efccdf1ca21de9426af377fb;hb=0d69b916c5ba44b63a26aa038d416d6ee286306b;hpb=37b99bdba8478569634dd5ceecea50d1e9f9ac0a diff --git a/types/float.c b/types/float.c index 16d43520..7aeb9c3a 100644 --- a/types/float.c +++ b/types/float.c @@ -32,12 +32,12 @@ #include static -struct definition *_float_definition_new(struct declaration *declaration, +struct bt_definition *_float_definition_new(struct declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name); static -void _float_definition_free(struct definition *definition); +void _float_definition_free(struct bt_definition *definition); static void _float_declaration_free(struct declaration *declaration) @@ -81,7 +81,7 @@ struct declaration_float * } static -struct definition * +struct bt_definition * _float_definition_new(struct declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, @@ -90,7 +90,7 @@ struct definition * struct declaration_float *float_declaration = container_of(declaration, struct declaration_float, p); struct definition_float *_float; - struct definition *tmp; + struct bt_definition *tmp; _float = g_new(struct definition_float, 1); bt_declaration_ref(&float_declaration->p); @@ -138,7 +138,7 @@ struct definition * } static -void _float_definition_free(struct definition *definition) +void _float_definition_free(struct bt_definition *definition) { struct definition_float *_float = container_of(definition, struct definition_float, p);