From 5286528da60c5f80faf8881dc8918d3f176440b7 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Wed, 17 May 2017 16:31:27 -0400 Subject: [PATCH] lib/ctf-ir/field-types.c: use `int`, not `int64_t` for return value MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Philippe Proulx Signed-off-by: Jérémie Galarneau --- lib/ctf-ir/field-types.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1