X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=plugins%2Fctf%2Ffs-src%2Fdata-stream-file.c;h=45e426bc64ab5b4682f1155d6714bbc327debdf4;hb=4fad6649d385de19fa55a01a7d24401021363dd1;hp=280a5d398ceb5f7b480d9fb4bcde4cc48f7e2722;hpb=c0d5e998c7aa7b301978b45f3c914d3fff6e0935;p=babeltrace.git diff --git a/plugins/ctf/fs-src/data-stream-file.c b/plugins/ctf/fs-src/data-stream-file.c index 280a5d39..45e426bc 100644 --- a/plugins/ctf/fs-src/data-stream-file.c +++ b/plugins/ctf/fs-src/data-stream-file.c @@ -706,22 +706,22 @@ void ctf_fs_ds_file_destroy(struct ctf_fs_ds_file *ds_file) } BT_HIDDEN -bt_message_iterator_status ctf_fs_ds_file_next( +bt_self_message_iterator_status ctf_fs_ds_file_next( struct ctf_fs_ds_file *ds_file, bt_message **msg) { enum bt_msg_iter_status msg_iter_status; - bt_message_iterator_status status; + bt_self_message_iterator_status status; msg_iter_status = bt_msg_iter_get_next_message( ds_file->msg_iter, ds_file->pc_msg_iter, msg); switch (msg_iter_status) { case BT_MSG_ITER_STATUS_EOF: - status = BT_MESSAGE_ITERATOR_STATUS_END; + status = BT_SELF_MESSAGE_ITERATOR_STATUS_END; break; case BT_MSG_ITER_STATUS_OK: - status = BT_MESSAGE_ITERATOR_STATUS_OK; + status = BT_SELF_MESSAGE_ITERATOR_STATUS_OK; break; case BT_MSG_ITER_STATUS_AGAIN: /* @@ -733,7 +733,7 @@ bt_message_iterator_status ctf_fs_ds_file_next( case BT_MSG_ITER_STATUS_INVAL: case BT_MSG_ITER_STATUS_ERROR: default: - status = BT_MESSAGE_ITERATOR_STATUS_ERROR; + status = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR; break; } return status;