X-Git-Url: https://git.efficios.com/?a=blobdiff_plain;f=src%2Fplugins%2Ftext%2Fpretty%2Fpretty.c;h=089d4871a97ff9e93033377a210d49d3309cf8d0;hb=9275bef4a2fa8fdcec24f4d9953b772c802897f9;hp=0a85530e7f95d49a1206fe1086deaaa0e36e30dc;hpb=4ea902c35c0ed6e309f767046179559ecc87367d;p=babeltrace.git diff --git a/src/plugins/text/pretty/pretty.c b/src/plugins/text/pretty/pretty.c index 0a85530e..089d4871 100644 --- a/src/plugins/text/pretty/pretty.c +++ b/src/plugins/text/pretty/pretty.c @@ -168,7 +168,7 @@ pretty_graph_is_configured(bt_self_component_sink *comp) bt_self_component_sink_borrow_input_port_by_name(comp, in_port_name)); if (!pretty->iterator) { - status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_MEMORY_ERROR; + status = BT_COMPONENT_CLASS_SINK_GRAPH_IS_CONFIGURED_METHOD_STATUS_ERROR; } return status; @@ -211,7 +211,7 @@ bt_component_class_sink_consume_method_status pretty_consume( BT_ASSERT(next_status == BT_MESSAGE_ITERATOR_NEXT_STATUS_OK); for (i = 0; i < count; i++) { - ret = handle_message(pretty, msgs[i]); + ret = (int) handle_message(pretty, msgs[i]); if (ret) { goto end; }