From: Philippe Proulx Date: Wed, 17 May 2017 20:31:27 +0000 (-0400) Subject: lib/ctf-ir/field-types.c: use `int`, not `int64_t` for return value X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=5286528da60c5f80faf8881dc8918d3f176440b7;p=deliverable%2Fbabeltrace.git lib/ctf-ir/field-types.c: use `int`, not `int64_t` for return value Signed-off-by: Philippe Proulx Signed-off-by: Jérémie Galarneau --- diff --git a/lib/ctf-ir/field-types.c b/lib/ctf-ir/field-types.c index 6df6bdf1d..92211a49f 100644 --- a/lib/ctf-ir/field-types.c +++ b/lib/ctf-ir/field-types.c @@ -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;