lib/ctf-ir/field-types.c: use `int`, not `int64_t` for return value
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Wed, 17 May 2017 20:31:27 +0000 (16:31 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Sun, 28 May 2017 16:57:43 +0000 (12:57 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
lib/ctf-ir/field-types.c

index 6df6bdf1dabd4aca28d699b8181c694133bc0e3c..92211a49f750409619560ba9be3b0206c9f99ef5 100644 (file)
@@ -4022,7 +4022,7 @@ int bt_ctf_field_type_structure_serialize(struct bt_ctf_field_type *type,
 {
        size_t i;
        unsigned int indent;
-       int64_t ret = 0;
+       int ret = 0;
        struct bt_ctf_field_type_structure *structure = container_of(type,
                struct bt_ctf_field_type_structure, parent);
        GString *structure_field_name = context->field_name;
This page took 0.03815 seconds and 4 git commands to generate.