Fix text plug-in: missing function name change
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 26 Jan 2017 17:00:21 +0000 (12:00 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Sat, 27 May 2017 18:09:09 +0000 (14:09 -0400)
bt_ctf_field_type_enumeration_mapping_iterator_get_name was removed
and replaced by the bt_ctf_field_type_enumeration_mapping_iterator_get_signed
and bt_ctf_field_type_enumeration_mapping_iterator_get_unsigned
functions

Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
plugins/text/print.c

index 3e920a02ca54a9bc3e78085c8183d3c09617e7af..255dc63a4717140b6009271eec39aabf97d9bfcb 100644 (file)
@@ -1029,8 +1029,8 @@ enum bt_component_status print_variant(struct text_component *text,
                }
 
                iter_ret =
-                       bt_ctf_field_type_enumeration_mapping_iterator_get_name(
-                               iter, &tag_choice);
+                       bt_ctf_field_type_enumeration_mapping_iterator_get_signed(
+                               iter, &tag_choice, NULL, NULL);
                if (iter_ret) {
                        bt_put(iter);
                        bt_put(tag_field);
This page took 0.02585 seconds and 4 git commands to generate.