From bf3a205bb8ce9c01e6a2750f6853b74de4fb36b2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Thu, 2 Feb 2017 12:23:09 -0500 Subject: [PATCH] Fix: log structure field name on serialization failure MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- formats/ctf/ir/fields.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/formats/ctf/ir/fields.c b/formats/ctf/ir/fields.c index cf08e780..f5b69784 100644 --- a/formats/ctf/ir/fields.c +++ b/formats/ctf/ir/fields.c @@ -1979,20 +1979,20 @@ int bt_ctf_field_structure_serialize(struct bt_ctf_field *field, } for (i = 0; i < structure->fields->len; i++) { - struct bt_ctf_field *field = g_ptr_array_index( + struct bt_ctf_field *member = g_ptr_array_index( structure->fields, i); - ret = bt_ctf_field_serialize(field, pos); + ret = bt_ctf_field_serialize(member, pos); if (ret) { const char *name; - struct bt_ctf_field_type *field_type = + struct bt_ctf_field_type *structure_type = bt_ctf_field_get_type(field); - (void) bt_ctf_field_type_structure_get_field(field_type, - &name, NULL, i); + (void) bt_ctf_field_type_structure_get_field( + structure_type, &name, NULL, i); fprintf(stderr, "Field %s failed to serialize\n", name ? name : "NULL"); - bt_put(field_type); + bt_put(structure_type); break; } } -- 2.34.1